欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

解决IDEA : Could not autowire. No beans of ‘xxxx‘ type found

程序员文章站 2022-10-03 17:20:00
Could not autowire. No beans of 'xxxx' type found...

错误信息

Could not autowire. No beans of 'xxxx' type found
解决IDEA : Could not autowire. No beans of ‘xxxx‘ type found


导致原因及其解决办法

三种报错原因:

  • 第一种:IDEA工具自身的缺陷,问题出在 spring auto scan 的配置上,在编辑时无法找不到对应的bean,故提示找不到对应bean的错误,这种情况在 Mybatis 作为数据持久层框架时常见;
  • 第二种:引入 @Service 时的注释包错误,有两个 service 的包很相似,比较容易引入错误,特别是手动引入时。

解决办法:

  • 第一种问题的解决办法:调正idea的配置,因为第一种情况的问题不会导致实质性的代码运行错误,也就是说只是个错误的提示信息,只需把这个提示信息等级从错误变成警告即可,操作如下:
    解决IDEA : Could not autowire. No beans of ‘xxxx‘ type found
    然后就会不再提示这个错误了;

  • 第二种问题的解决办法:引入的注释包有错误,换成:import org.springframework.stereotype.Service; 就可以了;


pass: 要注意mapper文件的注解是否添加;


-END>

本文地址:https://blog.csdn.net/qq_40762011/article/details/107591851