configuration - Spring cloud Angel.SR3 not working for config client -


i have application using spring cloud server , spring cloud client. spring cloud server has in pom:

<parent>         <groupid>org.springframework.cloud</groupid>         <artifactid>spring-cloud-starter-parent</artifactid>         <version>angel.sr3</version>         <relativepath /> <!-- lookup parent repository -->     </parent> 

this version upgraded 1.0.2.build-snapshot, good, problem happened spring cloud client:

this current pom parent setting:

<parent>         <groupid>org.springframework.cloud</groupid>         <artifactid>spring-cloud-starter-parent</artifactid>         <version>1.0.0.release</version>     </parent> 

with version, env variable can auto injected config service, once change angel.sr3, auto injection failed immediately, can not inject environment variable @ all.

is there wrong spring cloud here?

after 1.0.0.release need include org.springframework.cloud:spring-cloud-starter-config.


Comments

Popular posts from this blog

qt - Using float or double for own QML classes -

Create Outlook appointment via C# .Net -

ios - Swift Array Resetting Itself -