spring启动错误Singleton bean creation not allowed while the singletons of this factory are indestruction
时间: 2023-09-24 10:06:56 浏览: 226
出现错误信息"Singleton bean creation not allowed while the singletons of this factory are in destruction"通常是因为在Spring容器销毁过程中,尝试创建了单例Bean。根据引用和引用的描述,这个错误通常发生在使用线程池进行Spring任务测试时。
具体地说,当Spring容器正在销毁阶段时,不允许再次请求创建单例Bean。这是因为在销毁过程中,容器会依次销毁已创建的单例Bean,如果允许在此期间创建新的单例Bean,可能会导致不一致的状态。
这个问题可能是由于代码中的某个地方在销毁阶段调用了BeanFactory的方法,例如在destroy方法的实现中请求了一个Bean。这样的调用是不被支持的,因为在销毁期间,容器已经不再接受新的Bean创建请求。
为了解决这个问题,需要检查代码中是否存在在销毁阶段请求创建Bean的情况。如果确实需要在销毁过程中使用Bean,可以考虑使用非单例Bean或者使用ApplicationContextAware接口获取ApplicationContext来避免使用BeanFactory。
总结来说,当出现Spring启动错误"Singleton bean creation not allowed while the singletons of this factory are in destruction"时,通常是因为在容器销毁阶段请求创建了单例Bean,需要检查代码中是否存在这样的情况并进行相应的修改。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* [SpringBoot 启动失败:Singleton bean creation not allowed while singletons of this factory are in ...](https://blog.csdn.net/m0_37787662/article/details/102842488)[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^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"]
- *2* *3* [spring启动错误Singleton bean creation not allowed while the singletons of this factory are in...](https://blog.csdn.net/chenwiehuang/article/details/101532591)[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^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"]
[ .reference_list ]
阅读全文