THEBUGKING 2022-03-08 18:32 采纳率: 100%
浏览 66
已结题

springboot集成mybatis报错

//dao
@Repository
@Mapper
public interface TeacherDao {
    Teacher queryById(Integer id);
}
//mapper
<mapper namespace="com.thebugking.bugstart.dao.TeacherDao">

    <resultMap id="BaseResultMap" type="com.thebugking.bugstart.bean.Teacher">
        <result column="TId" jdbcType="VARCHAR" property="tid" />
        <result column="Tname" jdbcType="VARCHAR" property="tname" />
    </resultMap>

    <select id="queryById" resultMap="BaseResultMap">
        select * from Teacher where TId = #{id}
    </select>

</mapper>
//service
@Service
public interface TeacherService  {
    Teacher queryById(Integer id);
}
@Service
public class TeacherServiceimpl implements TeacherService {
    @Autowired
    TeacherDao teacherDao;

    @Override
    public Teacher queryById(Integer id) {
        Teacher teacher = teacherDao.queryById(id);
        return teacher;
    }
}
//control
@RestController
@RequestMapping("/")
public class TeacherController {
    @Autowired
    TeacherService teacherService;

    @RequestMapping("get/{id}")
    @ResponseBody
    public Teacher GetUser(@PathVariable Integer id){
        return teacherService.queryById(id);
    }

}
//启动类
@SpringBootApplication
//@MapperScan("com.thrbugking.bugstart.dao")
//@ComponentScan(basePackages = {"com.thebugking.bugstart.dao"})    加上这行不会报错,但请求不到接口报404
public class BugstartApplication {

    public static void main(String[] args) {
        SpringApplication.run(BugstartApplication.class, args);
    }

}
//配置
server:
  port: 80

spring:
  datasource:
    driver-class-name: com.mysql.cj.jdbc.Driver
    url: jdbc:mysql://localhost:3306/Test?useUnicode=true & characterEncoding=utf-8 &useSSL=true & serverTimezone=Asia/Shanghai
    username: root
    password: root
mybatis:
  mapper-locations: classpath:mapper/*.xml
  type-aliases-package: com.thebugking.bugstart.bean

//报错
Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
2022-03-08 18:19:44.329 ERROR 22484 --- [           main] o.s.b.d.LoggingFailureAnalysisReporter   : 

***************************
APPLICATION FAILED TO START
***************************

Description:

Field teacherService in com.thebugking.bugstart.control.TeacherController required a bean of type 'com.thebugking.bugstart.service.TeacherService' that could not be found.

The injection point has the following annotations:
    - @org.springframework.beans.factory.annotation.Autowired(required=true)


Action:

Consider defining a bean of type 'com.thebugking.bugstart.service.TeacherService' in your configuration.

img

  • 写回答

1条回答 默认 最新

  • 粒方336 2022-03-08 20:11
    关注

    img


    这个 @Service 去掉试试

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
    1人已打赏

    报告相同问题?

    问题事件

    • 系统已结题 3月17日
    • 已采纳回答 3月9日
    • 修改了问题 3月8日
    • 创建了问题 3月8日

    悬赏问题

    • ¥15 cuda.jit加速报错
    • ¥15 Octave 安装工具箱出错 Only Win32 target is supported!
    • ¥15 docker save的不能在另一台设备运行
    • ¥15 Unity Animation Rigging使用问题
    • ¥15 mbedtls握手返回-7200
    • ¥30 c++ http服务器
    • ¥15 express连接mssql,每条额外附加了语句
    • ¥20 IQOO12如何有效ADB方法
    • ¥15 ios如何获取用户的订阅情况
    • ¥15 复杂表达式求值程序里的函数优先级问题