SpringCloud 更改Eureka实例ID
2023-11-22 11:00 更新
一个普通的Netflix Eureka实例注册的ID等于其主机名(即,每个主机仅提供一项服务)。Spring Cloud Eureka提供了明智的默认值,其定义如下:
${spring.cloud.client.hostname}:${spring.application.name}:${spring.application.instance_id:${server.port}}}
一个示例是myhost:myappname:8080
。
通过使用Spring Cloud,可以通过在eureka.instance.instanceId
中提供唯一标识符来覆盖此值,如以下示例所示:
application.yml。
eureka: instance: instanceId: ${spring.application.name}:${vcap.application.instance_id:${spring.application.instance_id:${random.value}}}
通过前面示例中显示的元数据和在本地主机上部署的多个服务实例,在其中插入随机值以使实例唯一。在Cloud Foundry中,vcap.application.instance_id
是在Spring Boot应用程序中自动填充的,因此不需要随机值。
以上内容是否对您有帮助:
更多建议: