码迷,mamicode.com
首页 > 其他好文 > 详细

解决IDEA报错Could not autowire. There is more than one bean of 'xxx' type

时间:2020-01-26 14:32:03      阅读:964      评论:0      收藏:0      [点我收藏+]

标签:重写   service   autowired   qualifier   报错信息   autowire   could not   sts   类型   

其实这本身不是一个问题,也不影响整个项目的运行

技术图片

我们查看报错信息发现它的意思大致为xxx类型有不止一个bean,但是这个错误不会影响项目运行,相当于一个warning。

导致这个错误的原因通常是注入的类型有其他的实现类,所以IDEA提示注入的时候会冲突。比如我的项目出现这个错误的原因是项目中新增了一个定制的插件,这个插件里重写了这个类。
因此出现这个问题的时候可以有两种办法解决。
解决方式有两种:
1.给不同的实现标注名字
使用Qulifier注解标注
@Autowired
@Qualifier(name = ‘userDao1‘)
private UserDao userDao;

2.使用@Primary

@Component
@Primary
public class TestService{}

其实完全可以不用处理,我也建议不去处理,仅仅是知道它为什么有waring就足矣了。

解决IDEA报错Could not autowire. There is more than one bean of 'xxx' type

标签:重写   service   autowired   qualifier   报错信息   autowire   could not   sts   类型   

原文地址:https://www.cnblogs.com/think-world/p/12234123.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!