BeanCreationNotAllowedException: Error creating bean with name 'eurekaInstanceConfigBean' 報錯
阿新 • • 發佈:2019-02-17
學習 SpringCloud
時遇到如下錯誤
Destroy method on bean with name 'scopedTarget.eurekaClient' threw an exception: org.springframework.beans.factory.BeanCreationNotAllowedException: Error creating bean with name 'eurekaInstanceConfigBean': 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!)
找了好久終於在 github
上 SpringCloud
的 issues 裡找到了解決方案,連結在這裡
網上也有很多文章說這樣解決
@Component
public class FeignBeanFactoryPostProcessor implements BeanFactoryPostProcessor {
@Override
public void postProcessBeanFactory (ConfigurableListableBeanFactory beanFactory) throws BeansException {
BeanDefinition bd = beanFactory.getBeanDefinition("feignContext");
bd.setDependsOn("eurekaServiceRegistry", "inetUtils");
}
}
但我用這個方法不行。
最終的解決方案是在 pom.xml
新增 spring-boot-starter-web
依賴
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency>
然後重新匯入完美解決。
所用的 SpringBoot 版本:2.1.0.M2
SpringCloud 版本:Greenwich.BUILD-SNAPSHOT
— 2018.8.30 更新 —
今天發現還有一種情況會導致這個錯誤,如果你已經啟動了一個 Client,且沒改埠用的預設的 8080,另一個 Client 也沒改埠,那啟動第二個 Client 的時候會報這個錯誤,因為埠衝突。
解決方案很簡單,不管啟動幾個 Client,只要埠設定不一樣即可
server:
port: 8899