是否可以将 Spring 保护套执行器的正常运行终点更改为自定义终点?如下所示。

http://localhost:8080/actuator/health



http://localhost:8080/myapp/apphealth

只希望更改名称,而不想要执行器/运行状况的响应。是否有可能?

最佳答案

,有可能。
在文档的this部分中定义了如何自定义执行器端点的路径。
该文档指出:

因此,在您的情况下,您需要:

-- application.properties --
management.endpoints.web.base-path=/myapp
management.endpoints.web.path-mapping.health=apphealth

09-27 06:26