SpringBoot could not autowire
程序员文章站
2022-06-01 15:26:22
...
SpringBoot 在整合其资源的时候经常会遇到could not autowired. No beans of ‘xxxx’ type,虽然不影响使用,但是看着比较恶心 。
如:
这是因为在Spring在自动bean的时候还没有把当前所注入的bean装配起来,但是随着项目启动,bean被装配 了,然后调用的时候就有了。
解决办法:
加入注解
@Component(value = "apiCategoryMapper")
然后提示就消失了
推荐阅读
-
SpringBoot如何实现分离资源文件并打包
-
Springboot如何基于assembly服务化实现打包
-
SpringBoot环境搭建及第一个程序运行(小白教程)
-
SpringBoot Application注解原理及代码详解
-
简单了解springboot加载配置文件顺序
-
Springboot shiro认证授权实现原理及实例
-
Apache No space left on device: mod_rewrite: could not create rewrite_log_lock Configuration Failed
-
详解springboot中使用异步的常用两种方式及其比较
-
详解SpringBoot获得Maven-pom中版本号和编译时间戳
-
springboot添加邮件发送及压缩功能