如何从安全中排除springboot / health端点,这意味着即使未经身份验证,也会显示完整的健康详细信息内容?

时间:2016-08-04 11:43:42

标签: spring spring-boot health-monitoring

如果在application.yml属性中启用了安全性,即:

 management:
   security:
     enabled: true

在旧的springboot 1.2.x中,访问健康端点(/ health),无论是否通过凭证,都将返回健康响应的完整详细信息。

在springboot 1.3.x中,默认行为已更改。只有通过凭证才会返回完整的健康状况详细信息,否则只返回摘要(仅限状态)。

需要调查是否有简单的方法可以完整地获取健康状况(如springboot 1.2.x),即使不提供凭证?

参考:http://docs.spring.io/spring-boot/docs/current-SNAPSHOT/reference/htmlsingle/#production-ready-health-access-restrictions

0 个答案:

没有答案