如何在 HashiCorp Consul 中自定义管理端点路径

How to customize management endpoint path in HashiCorp Consul

如果我尝试将 Spring Boot Consul 应用程序的管理端点自定义到其他路径,例如:

management.context-path=/manage

HashiCorp Consul 服务器 无法检测微服务是否正常工作。 有什么可以通知 Consul 服务器应该寻找什么端点路径吗?

如果我评论 属性 "management.context-path",Consul 服务器再次正常工作,因为返回到根端点路径。

感谢任何帮助。

对了,在网上找了一段时间我找到了答案:

management:
  context-path: /manage

spring:
  cloud:
    consul:
      discovery:
        healthCheckPath: /manage/health

来源: https://github.com/spring-cloud/spring-cloud-consul/blob/master/docs/src/main/asciidoc/spring-cloud-consul.adoc