我是spring cloud的新手,在我的项目(一个使用spring boot构建的微服务项目)中,我使用了spring cloud版本的Brixton.RC2,它运行良好。但是当我尝试将其版本升级到 Brixton.RELEASE 时,该项目不适用于 zuul(如果我直接访问 web 微服务,它可以工作,但如果我通过 zuul 访问,它不起作用),我没有更改任何内容在配置中。maven依赖是:
<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>
谁能指定我的项目出了什么问题?
谢谢和最好的问候!!