浅谈升级Spring Cloud到Finchley后的一点坑
最近为了使用Kotlin以及Webflux进行后台应用开发,把SpringCloud版本升级到了Finchley。
这种大版本的提升,坑自然是少不了的,我最近会把遇到问题都总结在这里避免大家花太多时间在排坑上:
Failedtobindpropertiesunder‘eureka.instance.instance-id'tojava.lang.String:
Description:
Failedtobindpropertiesunder'eureka.instance.instance-id'tojava.lang.String:
Property:eureka.instance.instance-id
Value:${spring.cloud.client.ipAddress}:${spring.application.name}:${spring.application.instance_id:${server.port}}
Origin:"eureka.instance.instance-id"frompropertysource"bootstrapProperties"
Reason:Couldnotresolveplaceholder'spring.cloud.client.ipAddress'invalue"${spring.cloud.client.ipAddress}:${spring.application.name}:${spring.application.instance_id:${server.port}}"
spring.cloud.client.ipAddress这个参数已经不能被识别了
我们来看看源码:
#org.springframework.cloud.client.HostInfoEnvironmentPostProcessor @Override publicvoidpostProcessEnvironment(ConfigurableEnvironmentenvironment, SpringApplicationapplication){ InetUtils.HostInfohostInfo=getFirstNonLoopbackHostInfo(environment); LinkedHashMapmap=newLinkedHashMap<>(); map.put("spring.cloud.client.hostname",hostInfo.getHostname()); map.put("spring.cloud.client.ip-address",hostInfo.getIpAddress()); MapPropertySourcepropertySource=newMapPropertySource( "springCloudClientHostInfo",map); environment.getPropertySources().addLast(propertySource); }
发现原来的ipAddress已经改为ip-address,那么我们在配置中心做相应的改正即可。
注:改为ip-address不会对之前的老版本的项目产生影响,会自动解析并正确赋值
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持毛票票。