Spring boot actuator端点启用和暴露

发布时间 2023-05-31 15:15:16作者: shaun23

SpringBoot 1.x 版本

# 关闭所有端点
endpoints.enabled=false
# 开启 /health 端点
endpoints.health.enabled=true

SpringBoot 2.x 版本

# 关闭所有端点
management.endpoints.enabled-by-default=false
# 开启 /health 端点
management.endpoint.health.enabled=true