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条回答 默认 最新

      报告相同问题?

      相关推荐 更多相似问题

      问题事件

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

      悬赏问题

      • ¥15 关于用matlab进行光束整形的问题
      • ¥15 vs code编译器 C语言刚学,想的有点复杂
      • ¥15 航班订票系统函数无法运行
      • ¥20 VS2022无法启动程序,如何解决?(语言-c++|开发工具-visual studio)
      • ¥15 c语言可以做出完整的吗有人看看吗
      • ¥15 电脑流氓插件处理方法
      • ¥15 问一下这个可调恒流源电路用哪个电源接口比较好,想用tapec接口仅作为电源接口这个引脚怎么连啊
      • ¥30 Abaqus做建模的时候网格没办法收敛是为什么?
      • ¥15 车牌识别摄像镜头,httppost,nodejs
      • ¥20 腾讯云托管与本地测试 GET请求获取返回值 完全不同