Springboot项目启动失败提示找不到dao类的解决
目录
- 错误描述
- 原因
- 解决方法
- 总结
***************************
APPLICA编程客栈TION FAIL编程客栈ED TO START***************************Description:
Field productDao in com.yj.inventorymanagement.service.impl.ProductServiceImpl required a bean of type 'com.yj.inventorymanagement.dao.ProductDao' that couandroidld not be found.
The injection point has the following annotations:
- @org.springframework.beans.factory.annotation.Aphputowired(required=true)Action:
Consider defining a bean of type 'com.yj.inventorymanagement.dao.ProductDao' in your configuration.
错误描述
项目里明明已经写了dao类,却还是提示xxxDao类notFound。
原因
没有注入dao类。
解决方法
可以在这个dao类上加上@Mapper注解,也可以在整个项目的启动类xxxApplication加上@MapperScan(basePackages="dao类所在的包路径"),推荐第二种方式注入dao,因为项目的dao类不止一个,这样就不用一个一个dao文件去加@Mapper,可以做到一劳永逸。
@SpringBootApplication @MapperScan(basePackagepythons = "com.yj.inventorymanagement.dao") public class InventoryManagementApplication { public static void main(String[] args) { SpringApplication.run(InventoryManagementApplication.class, args); } }
总结
以上为个人经验,希望能给大家一个参考,也希望大家多多支持编程客栈(www.devze.com)。
精彩评论