启动报错,
Annotation-specified bean name 'brdbService' for bean class [com.test.service.brdbService] conflicts with existing
分析原因: 出现这个错误主要是你的spring里面的bean名字重复了。
解决方法:
(1)如果只需要扫描impl指定目录下的包,不扫其他重复bean所在包可解决问题 spring中配置 也能解决问题。
(2)去掉相同的bean名称,解决根本问题