在sprigboot2.0之前为@Value("${spring.cloud.client.ipAddress}")在springboot2.0之后改为了@Value("${spring.cloud.client.ip-address}")
在springboot中使用@Value("${spring.cloud.client.ip-address}")获取ip时必须导入以下依赖
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-commons</artifactId>
</dependency>