I am new to spring cloud, in my project (microservice project with spring boot), I used spring cloud version of Brixton.RC2 and it worked fine. but when I try to upgrade its version to Brixton.RELEASE, the project does not work with zuul (if I connect directly to the web microservice, it works, but if I access via zuul it will not work), I did not change anything in the configuration. maven dependency:
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.3.5.RELEASE</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-parent</artifactId>
<version>Brixton.RC2</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
can anyone point out what goes wrong with my project?
Thanks and best regards !!
source
share