springboot启动的注意事项之不同包下有同样名字的class类问题
作者:zuixiaoyao_001
springboot不同包下有同样名字的class类
springboot 在启动时候,常启动不起来,检查发现是不同包下面有同名的service和serviceImpl,按理说不同包下是可以有同名的类存在的,但是启动就是启动不了,报错说
org.springframework.context.annotation.ConflictingBeanDefinitionException: Annotation-specified bean name 'roleServiceImpl' for bean class [com.example.service.RoleServiceImpl] conflicts with existing, non-compatible bean definition of same name and class [com.example.roleService.RoleServiceImpl]
意思是:
以Bean名字‘roleServiceImpl’注解的类[com.example.service.RoleServiceImpl]与存在的不相容的同名类[com.example.roleService.RoleServiceImpl]相冲突。
原来是在这两个实现类上面都只用了@service这个注解,根据映射规则,这两个service都映射为了roleServiceImpl,发生了冲突。
解决办法
- 1.将其中一个实现类改为不同的名字;
- 2.将其中一个注解变更为一个name为非roleServiceImpl的注解@service(name="aaaa")。
再次启动,OK。
springboot不同包下同名文件,启动时报重名错误的解决
错误信息:
org.springframework.beans.factory.BeanDefinitionStoreException: Failed to parse configuration class [com.***.***.StarterApplication]; nested exception is org.springframework.context.annotation.ConflictingBeanDefinitionException: Annotation-specified bean name 'discussController' for bean class [com.***.***.controller.wechat.DiscussController] conflicts with existing, non-compatible bean definition of same name and class [com.***.***.controller.web.DiscussController]
本人遇到这种问题,搞了半天,头疼。
搜来的解决办法
1:加:@Controller("rename") ,感觉太繁琐。
2、重新定义Bean的命名策略,结果不起作用。
就请教了我司大牛,大牛一通操作,给出了完美解决方法,在这里感谢这位老师,也分享出来哈哈。
解决办法
1、升级spring boot到2.2.7 升级spring到5.2.3以上
(我之前用的5.2.2,就差一个版本,就没有FullyQualifiedAnnotationBeanNameGenerator)
2、StarterApplication中添加
@ComponentScan(value = {"com.**.**.spring", ……(此处可配置多个包)}, nameGenerator = FullyQualifiedAnnotationBeanNameGenerator.class)
完美!
总结
以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。