zoukankan      html  css  js  c++  java
  • SpringBoot与Cloud版本匹配问题

    在使用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
    
  • 相关阅读:
    jQuery 选择器
    pf_ring 编译移植
    Android wifi 扫描机制
    wifi 万能钥匙协议
    linux下CJson使用
    libxml -- 解析 XML 文档
    关闭浏览器复制行为
    Ubuntu 语言设置
    Socket编程之非阻塞connect
    Java多维数组
  • 原文地址:https://www.cnblogs.com/bihanghang/p/10186807.html
Copyright © 2011-2022 走看看