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 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵