启动服务BeanCreationNotAllowedException: Error creating bean with name 'eurekaAutoServiceRegistration'

  今天遇到这个问题,到处查找导致这个问题原因。很多帖子说不一。比如,端口号冲突、热部署开启、单元测试等等。

其实这些不是根本原因。报这个问题的=根本原因是因为eureka 已经起来了。但是后续的错误导致ApplicationContext 异常关闭。从而导致eureka 连接异常关闭。所以排查问题时候一定要先排查其他问题。如果把其他问题解决掉了,这个问题自然而然就解决了。参考文章:https://github.com/spring-cloud/spring-cloud-netflix/issues/1952  具体参照如下截图:

 

启动服务BeanCreationNotAllowedException: Error creating bean with name 'eurekaAutoServiceRegistration'_第1张图片

 

我遇到的具体问题:

eurekaAutoServiceRegistration 错误截图

真是原因:


 

rabbitmq 报 reply-code=406, reply-text=PRECONDITION_FAILED  ,是因为rabbitmq server 已经存在此名称的quene,启动时候需要改动这个quene 的属性,但是 rabbitmq server 不允许修改。导致启动失败,ApplicationContext 异常关闭。最终导致 eurekaAutoServiceRegistration 异常销毁

 

注意:图片打码部分是项目main方法 类名 和 发生异常quene的名称 

 

你可能感兴趣的:(启动服务BeanCreationNotAllowedException: Error creating bean with name 'eurekaAutoServiceRegistration')