SpringCloud踩坑日记 - 使用ip注册到eureka
Posted 代码本天成,妙手偶得之
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringCloud踩坑日记 - 使用ip注册到eureka相关的知识,希望对你有一定的参考价值。
服务提供者使用主机名注册到eureka改为使用ip注册到eureka
eureka:
client:
service-url:
defaultZone: http://localhost:10010/eureka/
instance:
preferIpAddress : true
instance-id: ${spring.cloud.client.ip-address}:${spring.application.name}:${server.port}
其中获取ip,SpringCloud2.0版本对应的key值为${spring.cloud.clent.ip-address},网上流传大多为${spring.cloud.clent.ipAddress}
以上是关于SpringCloud踩坑日记 - 使用ip注册到eureka的主要内容,如果未能解决你的问题,请参考以下文章
踩坑日记: springcloud多环境Maven配置报错 active: @profileActive@