报错:Could not autowire. No beans of ‘UserMapper’ type found

原因是Dao为interface 无法通过@Bean加入到容器,也就无法通过@Autowired自动注入
解决方法:Dao上加上@Repository 它用于将数据访问层 (DAO 层 ) 的类标识为 Spring Bean,注释后即可使用@Autowired进行注入

对了 还要再Application类加上@MapperScan(“mapper包的位置例如:com.example.mybatistest.mapper”)

posted on 2020-09-08 17:52  田坤坤  阅读(1400)  评论(0编辑  收藏  举报