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

问题描述 投票:0回答:2

使用Spring Boot 2.1.2执行器。我的类路径中有Redis。执行器自动启用RedisReactiveHealthIndicator。我不希望这样。我的应用程序不是被动的。我想要RedisHealthIndicator,但被动的人正在取代它。

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

spring-boot spring-boot-actuator
2个回答
0
投票
management.health.redis.enabled = false

将其添加到您的application.properties文件中。

希望这可以帮助 ;)


0
投票

试试这个

@EnableAutoConfiguration(exclude={RedisReactiveHealthIndicator.class})
© www.soinside.com 2019 - 2024. All rights reserved.