欢迎来到徐庆高(Tea)的个人博客网站
磨难很爱我,一度将我连根拔起。从惊慌失措到心力交瘁,我孤身一人,但并不孤独无依。依赖那些依赖我的人,信任那些信任我的人,帮助那些给予我帮助的人。如果我愿意,可以分裂成无数面镜子,让他们看见我,就像看见自己。察言观色和模仿学习是我的领域。像每个深受创伤的人那样,最终,我学会了随遇而安。
当前位置: 日志文章 > 详细内容

Springboot项目启动失败提示找不到dao类的解决

2025年08月01日 Java
***************************application failed to start***************************description:field p

***************************
application failed to start
***************************

description:

field productdao in com.yj.inventorymanagement.service.impl.productserviceimpl required a bean of type 'com.yj.inventorymanagement.dao.productdao' 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.yj.inventorymanagement.dao.productdao' in your configuration.

错误描述

项目里明明已经写了dao类,却还是提示xxxdao类notfound。

原因

没有注入dao类。

解决方法

可以在这个dao类上加上@mapper注解,也可以在整个项目的启动类xxxapplication加上@mapperscan(basepackages="dao类所在的包路径"),推荐第二种方式注入dao,因为项目的dao类不止一个,这样就不用一个一个dao文件去加@mapper,可以做到一劳永逸。

@springbootapplication
@mapperscan(basepackages = "com.yj.inventorymanagement.dao")
public class inventorymanagementapplication {

	public static void main(string[] args) {
		springapplication.run(inventorymanagementapplication.class, args);
	}

}

总结

以上为个人经验,希望能给大家一个参考,也希望大家多多支持代码网。