【已解决】Dubbo版本升级引起的循环注册异常
【已解决】The bean ‘dubboConfigConfiguration.Single’ could not be registered. A bean with that name has already been defined and overriding is disabled.异常解决
概述
今天的Springboot项目在集成dubbo的时候,报了这么一个异常。
异常描述
***************************
APPLICATION FAILED TO START
***************************
Description:
The bean 'dubboConfigConfiguration.Single' could not be registered. A bean with that name has already been defined and overriding is disabled.
Action:
Consider renaming one of the beans or enabling overriding by setting spring.main.allow-bean-definition-overriding=true
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
如图片所示:
异常分析
这个其实是dubbo版本的一个问题。
dubbo版本在2.6.5之前是使用 DubboConfigConfigurationSelector 实现ImportSelector 返回类名称去加载的
而在2.6.8之后变了,是使用 DubboConfigConfigurationRegistrar 实现ImportBeanDefinitionRegistrar 使用Spring工具类注册加载的
初步判断DubboConfigConfigurationRegistrar在注册的时候allow-bean-definition-overriding 值为false,循环register的时候抛出异常
DefaultListableBeanFactory 中allowBeanDefinitionOverriding值默认为true 但是在SpringApplication 进行赋值,当没配置此参数时,会被设置成false
所以,手动设置该值即可解决。
解决方案
properties通过添加:
spring.main.allow-bean-definition-overriding=true
- 1
yml通过添加:
main: allow-bean-definition-overriding: true
- 1
- 2
文章来源: chenhx.blog.csdn.net,作者:谙忆,版权归原作者所有,如需转载,请联系作者。
原文链接:chenhx.blog.csdn.net/article/details/116944334
- 点赞
- 收藏
- 关注作者
评论(0)