由于依赖性,我需要使用Spring Boot 1.2.8,并且Spring云Brixton版本无法正常工作,因为它正在寻找名为Mode的名为Mode的Enum。我读到Angel系列适用于1.2.8,但不幸的是,在Spring云存储库https://repo.spring.io/milestone中没有。有没有办法让Angel.SR系列支持启动1.2.8?还是其他任何建议?
非常感谢
答案 0 :(得分:0)
只有Spring Cloud的 Angel 版本适用于Spring Boot 1.2.x
答案 1 :(得分:0)
我能够解决我面临的问题。问题是,我无法在Spring boot 1.2.8中使用Spring云Eureka。由于依赖性,我需要使用此版本。所以我能够解决使用下面的依赖。
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-netflix</artifactId>
<version>1.0.5.RELEASE</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<repositories>
<repository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>http://repo.spring.io/libs-milestone</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-config</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-eureka</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-eureka-server</artifactId>
</dependency>
Thank you very much for the help.. And appreciated.