是否可以在spring-boot中更改/ health端点?

时间:2017-03-14 12:10:32

标签: java spring spring-boot spring-boot-actuator

我有一个spring-boot-web应用程序,我正在使用执行器来检查我的应用程序的状态。每当我做健康时,我都可以检查我的申请状态。我的疑问是,是否可以将/ health端点更改为/ ABC / health(我需要将上下文添加到/ health)。是否可能或者我需要有一个控制器,需要处理它。

1 个答案:

答案 0 :(得分:3)

您可以使用内置属性公开不同路径下的所有Actuator端点。只需在 application.properties 文件中设置它:

management.context-path=/ABC

健康状况将在/ABC/health下提供。