有没有办法在Spring Boot 2 Actuator中禁用ReactiveHealthIndicators?

时间:2019-04-03 20:14:39

标签: spring-boot spring-boot-actuator

使用Spring Boot 2.1.2执行器。我的类路径中有Redis。执行器会自动启用RedisReactiveHealthIndicator。我不要我的应用没有反应。我想要RedisHealthIndicator,但是被动式的正在替换它。

有没有办法停止自动启用反应性健康指标?

2 个答案:

答案 0 :(得分:0)

management.health.redis.enabled = false

将此添加到application.properties文件。

希望这会有所帮助;)

答案 1 :(得分:0)

比尝试这个

@EnableAutoConfiguration(exclude={RedisReactiveHealthIndicator.class})