运行状况端点在 spring-boot-actuator 服务中不工作

Health endpoint not working in spring-boot-actuator service

您好,我正在使用 spring 引导版本 - 2.0.0.RC1。我有简单的服务 运行 @port 9400。

我的application.properties配置如下:

spring.main.banner-mode = CONSOLE
spring.profiles.active  = ${profile:local}

server.compression.enabled = true
server.compression.min-response-size = 1
server.compression.mime-types = application/json,application/xml,text/xml,text/plain

banner.charset              = UTF-8

management.endpoints.health.show-details=true
management.server.address: 127.0.0.1
management.endpoints.web.expose: health,info,metrics,mappings,trace
management.endpoints.health.show-details: true
management.endpoints.health.time-to-live: 2000
management.security.enabled: false
management.health.defaults.enabled: false
management.health.diskspace.enabled: true

我的 build.gradle 有:

dependencies {
    // Spring Boot
    compile group: 'org.springframework.boot', name: 'spring-boot-starter-webflux', version: springBootVersion
    compile group: 'org.springframework.boot', name: 'spring-boot-starter-actuator', version: springBootVersion
}

我的gradle.properties:

springBootVersion    = 2.0.0.RC1

当我指向http://127.0.0.1:9400/health

我收到错误屏幕作为附件快照。

我错过了什么?

您提供的 show-details 值无效... 无论如何,在 Spring Boot 2.0 中,执行器端点(如健康)被重新映射到 /actuator/*。 现在,健康位于 /actuator/health.

更多信息请参见 https://github.com/spring-projects/spring-boot/wiki/Spring-Boot-2.0.0-RC2-Release-Notes#health-endpoint

中的发行说明

只需在 application.properties 文件中添加以下内容 属性:

management.health.defaults.enabled=false