首页 > 编程语言 > 详细

SpringBoot与Cloud版本匹配问题

时间:2018-12-27 19:38:20      阅读:479      评论:0      收藏:0      [点我收藏+]

在使用SpringCloud的时候需要在SpringBoot工程的pom.xml中引入

<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-dependencies</artifactId>
            <version>Dalston.RELEASE</version>
            <type>pom</type>
            <scope>import</scope>
        </dependency>
    </dependencies>
</dependencyManagement>

此时就要注意SpringCloud与SpringBoot的兼容问题,像上述的SpringCloud版本为Dalston,那么与之对应的SpringBoot版本就应该为1.5.x,像这样

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>1.5.10.RELEASE</version>
    <relativePath/> <!-- lookup parent from repository -->
</parent>

此时SpringBoot版本为1.5.10,是兼容的。

版本兼容表:

Spring Cloud                            Spring Boot

Finchley                              兼容Spring Boot 2.0.x,不兼容Spring Boot 1.5.x
Dalston和Edgware                    兼容Spring Boot 1.5.x,不兼容Spring Boot 2.0.x
Camden                              兼容Spring Boot 1.4.x,也兼容Spring Boot 1.5.x
Brixton                             兼容Spring Boot 1.3.x,也兼容Spring Boot 1.4.x
Angel                               兼容Spring Boot 1.2.x

SpringBoot与Cloud版本匹配问题

原文:https://www.cnblogs.com/bihanghang/p/10186807.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!