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

SpringBoot could not autowire

程序员文章站 2022-06-01 15:26:22
...

SpringBoot 在整合其资源的时候经常会遇到could not autowired. No beans of ‘xxxx’ type,虽然不影响使用,但是看着比较恶心 。
如:
SpringBoot could not autowire
这是因为在Spring在自动bean的时候还没有把当前所注入的bean装配起来,但是随着项目启动,bean被装配 了,然后调用的时候就有了。
解决办法:
加入注解

@Component(value = "apiCategoryMapper")

SpringBoot could not autowire
然后提示就消失了
SpringBoot could not autowire