zoukankan      html  css  js  c++  java
  • spring boot与spring cloud版本匹配关系

    Spring Cloud版本

    在写本篇文章时,Spring Cloud版本演进情况如下:

    版本名称版本
    Finchley snapshot版
    Edgware snapshot版
    Dalston SR1 当前最新稳定版本
    Camden SR7 稳定版本
    Brixton SR7 稳定版本
    Angel SR6 稳定版本

    从下Angel到上Finchley可以看出,版本的第一个字母是按照A-Z顺序编排的。这些单词是什么含义呢,大概的搜一下可以得出基本都是地名,官方说明是这些版本号的单词来自于英国伦敦的地铁站站名。

    那么为什么要用单词而不是数字类型的版本号呢? 
    因为Spring Cloud包含了一系列的子系统,Spring Cloud Config,Spring Cloud Netflix,Spring Cloud Bus等,为了防止与这些子系统的版本号混淆,Spring Cloud的版本号全部使用英文单词。

    版本号后面的SRX,X代表一个数字,这个是小版本号,就是在特定的版本中,修复一些致命问题,做的升级版本号。

    Spring Cloud与Spring Boot版本匹配关系

    Spring CloudSpring 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

    文章转载自:http://blog.csdn.net/ljj_9/article/details/78645267

  • 相关阅读:
    HDU 2594 扩展kmp模板题
    HDU 1358 简单kmp
    HDU 3336 扩展kmp
    SPOJ SUBLEX 求第k小子串
    Codeforces 235C
    HDU 4622 Reincarnation
    HDU 4622 求解区间字符串中的不同子串的个数
    [LeetCode] Length of Last Word 字符串查找
    [LeetCode] Sudoku Solver 解数独,递归,回溯
    [LeetCode] Longest Common Prefix 字符串公有前序
  • 原文地址:https://www.cnblogs.com/1ning/p/8579262.html
Copyright © 2011-2022 走看看