Spring Boot运行状况检查不显示数据库状态

时间:2019-01-29 01:55:14

标签: java spring spring-boot spring-data-jpa

在下面一行

return Health.up().build() 

我只得到{"status" : "UP"}

我想查看数据库的状态。 这是我的属性文件

spring.jpa.hibernate.ddl-auto=update
spring.datasource.url=jdbc:mysql://localhost:3306/
spring.datasource.username=root
spring.datasource.password=test
management.endpoint.health.show-details=always
management.health.db.enabled=true
management.health.defaults.enabled=true
management.security.enabled=false

endpoints.health.sensitive: false
endpoints.health.enabled.sensitive=false
endpoints.enabled=false
endpoints.health.enabled=true

我想念什么? :(

0 个答案:

没有答案