弹簧启动 2 运行状况执行器默认映射

我使用的是Spring Boot 2 M3执行器。默认情况下,运行状况终结点映射到 。/application/health

  • 是否可以将此路径更改为 ?/health

答案 1

在 application.properties 文件中,添加此属性以将基路径设置为“/”

management.endpoints.web.base-path=/

路径现在将为“/运行状况”

编辑:或者,如果您使用的是 YAML,请使用:

management:
  endpoints:
    web:
      base-path: /

答案 2

仅供参考,从Spring Boot 2.0.0.RELEASE开始,默认运行状况终结点为/actuator/health


推荐