我有一个使用Spring云服务器和spring cloud客户端的应用程序。 Spring云服务器在POM中有这个:
<parent>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-parent</artifactId>
<version>Angel.SR3</version>
<relativePath /> <!-- lookup parent from repository -->
</parent>
这个版本从1.0.2.BUILD-SNAPSHOT升级,很好,但春天云客户端出现问题:
这是我目前的POM父级设置:
<parent>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-parent</artifactId>
<version>1.0.0.RELEASE</version>
</parent>
使用这个版本,env变量可以从配置服务自动注入,但是一旦我将其更改为Angel.SR3,自动注入立即失败,根本无法注入环境变量。
春云是否有问题?
答案 0 :(得分:0)
在1.0.0.RELEASE
之后,您需要加入org.springframework.cloud:spring-cloud-starter-config
。