当前位置:   article > 正文

解决:Rabbit health check failed, org.springframework.amqp.AmqpIOException: java.io.IOException_rabbit health check failed org.springframework.amq

rabbit health check failed org.springframework.amqp.amqpapplicationcontextcl

1、问题描述

Spring Boot 项目加入了 Amqp 依赖,但是未暂未使用消息队列,而又由于开启了 Acuator 监控暴露所有端点(因为暴露了 amqp,因此也需要检查 amqp),导致项目启动出现这个报错(虽然不影响,但是强迫症看着不舒服)

在这里插入图片描述

2、3 种解决办法

  • 方式 1:注释掉 pom 或者 build.gradle 中暂时不用的 amqp 依赖
// implementation group: 'org.springframework.boot', name: 'spring-boot-starter-amqp', version: '2.1.4.RELEASE'
  • 1
  • 方式 2:在启动类上排除 Amqp 的自动装配
@SpringBootApplication(exclude = {RabbitAutoConfiguration.class})
public class BossApplication {
    public static void main(String[] args) {
        SpringApplication.run(BossApplication.class, args);
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 方式 3:关闭暴露端点 Amqp 的信息
management.health.rabbit = false
  • 1

management:
  health:
    enabled: true
    show-details: always #总是显示详细信息。可显示每个模块的状态信息
    rabbit:
      enabled: false
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/501954
推荐阅读
相关标签
  

闽ICP备14008679号