Error creating bean with name 'eurekaAutoServiceRegistration'

时间:2023-03-09 06:30:15
Error creating bean with name 'eurekaAutoServiceRegistration'
spring-boot项目不断重启,报错:
 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!) 
解决方法:把pom.xml中的热部署注释掉:
 <!-- 热启动 -->
<!-- <dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
</dependency> -->