在下面一行
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
我想念什么? :(