Error creating bean with name ‘eurekaAutoServiceRegistration‘: Singleton bean creation not allowed处理

springcloud 启动包错:

org.springframework.beans.factory.BeanCreationNotAllowedException: Error creating bean with name 'eurekaAutoServiceRegistration': Singleton bean creation not allowed while singletons of this factory are in destruction (Do not request a bean from a BeanFactory in a destroy method implementation!)
 

springclou的版本:
Dalston.RELEASE

原因分析及解决方案参考:
链接

原因:
销毁顺序问题。

根本原因是关闭ApplicationContext时,Spring将销毁所有单例 bean,首先销毁eurekaAutoServiceRegistion,然后销毁feignContext。当销毁 feignContext 时,同时销毁所有与之关联的 FeignClient。由于 eurekaAutoServiceRegistration 监听ContextClosedEvent,这些事件将被发送到该bean。不幸的是,因为它已经被销毁了,所以出现上面的异常(尝试在销毁中创建bean)。

解决方案:
作为权宜之计,调整一下销毁顺序。通过 BeanFactoryPostProcessor 改变一下依赖关系,进而影响销毁顺序。

代码如下:

import org.springframework.beans.BeansException;
import org.springframework.beans.factory.config.BeanDefinition;
import org.springframework.beans.factory.config.BeanFactoryPostProcessor;
import org.springframework.beans.factory.config.ConfigurableListableBeanFactory;
import org.springframework.stereotype.Component;

import java.util.Arrays;

@Component
public class FeignBeanFactoryPostProcessor implements BeanFactoryPostProcessor {

    @Override
    public void postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory) throws BeansException {
        if (containsBeanDefinition(beanFactory, "feignContext", "eurekaAutoServiceRegistration")) {
            /* 调整依赖顺序,这样会先销毁 feignContext, 再销毁 eurekaAutoServiceRegistration */
            BeanDefinition bd = beanFactory.getBeanDefinition("feignContext");
            bd.setDependsOn("eurekaAutoServiceRegistration");
        }
    }

    private boolean containsBeanDefinition(ConfigurableListableBeanFactory beanFactory, String... beans) {
        return Arrays.stream(beans).allMatch(b -> beanFactory.containsBeanDefinition(b));
    }
}

总结:
换个比D版本的springcloud高的springcloud版本就可以解决了

  • 2
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
引用中提到的异常信息 "Singleton bean creation not allowed while the singletons of this factory are in destruction" 是由于在销毁方法实现中请求了BeanFactory的bean,导致无法创建单例bean。这个问题在SpringBoot启动时有时会出现,并且可能与版本有关。中提到的可能原因是版本问题。从Spring的bean学习开始到MyBatis Plus,有时会遇到这个问题。可能是由于sqlSessionFactorybean的创建失败或其他类的bean创建失败。出现这个问题时,要检查版本是否兼容。中提到的可能原因是代码问题。可能出现的错误是 "Error creating bean with name 'sqlSessionFactory'",但是进一步检查发现具体的类的bean创建失败。或者出现了SQL语句错误。这可能是由于字段名与关键字冲突导致的。在表的列名(对应类中的字段名)中不要使用关键字,需要将其更改为其他名称。<span class="em">1</span><span class="em">2</span><span class="em">3</span> #### 引用[.reference_title] - *1* [Singleton bean creation not allowed while singletons of this factory are in destru](https://blog.csdn.net/CMEguagua/article/details/107867332)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT3_1"}}] [.reference_item style="max-width: 50%"] - *2* *3* [Error creating bean with name ‘sqlSessionFactory‘此类问题原因总结](https://blog.csdn.net/VanGotoBilibili/article/details/112702857)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT3_1"}}] [.reference_item style="max-width: 50%"] [ .reference_list ]

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

刘德华一不小心就打代码

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值