在向Eureka Server注册实例时,默认的Eureka实例配置不会考虑$ {management.context-path} Spring Boot属性。
请参阅org.springframework.cloud.netflix.eureka.EurekaInstanceConfigBean
,相应的属性可能应该包含@Value
注释。
解决方法是明确设置路径,如下所示:
eureka:
instance:
statusPageUrlPath: ${management.context-path}/info
healthCheckUrlPath: ${management.context-path}/health