标签:-name org boot depend 检查 资源 stat nbsp idt
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency>
/health 作用:健康检查 status取值情况 UP:正常 DOWN :遇到了问题,不正常 OUT_OF_SERVICE:资源未在使用,或者不该去使用 UNKNOWN: 未知
application.properties
# 显示health端点的详情 management.endpoint.health.show-details=always
# 描述应用 info.app-name=spring-boot-demo info.author=czy info.email=XXXXX@com
# 激活所有的actuator端点 management.endpoints.web.exposure.include=*
# 激活actuator个别端点 management.endpoints.web.exposure.include=metrics,health
标签:-name org boot depend 检查 资源 stat nbsp idt
原文地址:https://www.cnblogs.com/my-program-life/p/12253009.html