自学内容网 自学内容网

Idea 解决 Could not autowire. No beans of ‘xxxx‘ type found 的错误提示

Idea 解决 Could not autowire. No beans of ‘xxxx’ type found 的错误提示

解决办法一

在启动类上加需要扫描的包路径即可

@SpringBootApplication(scanBasePackages = {"com.abc","com.bbc"})

@SpringBootApplication(scanBasePackages = "com.juyi")

解决办法2

.查看对应service层是否添加@Service

2.可以修改成@Resource注入,@ Autowired和@Resource区别一个是默认按照类型,一个默认按照名字

3.解决办法是:降低Autowired检测的级别,将Severity的级别由之前的error改成warning或其它可以忽略的级别。


原文地址:https://blog.csdn.net/weixin_48616345/article/details/140658091

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!