本文未完成,待续….
加入依赖
1 | <dependency> |
从 Spring Boot 2.0 开始,多数的端点默认是禁用的,除了 /health 和 /info
如果需要加入其它的,进行配置,如:
1 |
|
1 | http://localhost:8080/actuator |
返回:
1 | { |
为加入所有的Endpoint, 可以加入以下配置:
1 | management: |
再访问:
1 | http://localhost:8080/actuator |
返回结果
1 | { |
1 | http://localhost:8080/actuator/health |
返回
1 | {"status":"UP"} |
1 | http://localhost:8080/actuator/info |
返回:
1 | {} |