Spring Cloud Alibaba - 02 SpringCloud 、 SpringCloud Alibaba 、SpringBoot的生产版本选择

2022-02-02 15:26:24 浏览数 (1)

文章目录

  • Spring Cloud 生态圈概览
  • Spring Cloud
  • Spring Cloud Alibaba
  • 版本选择
    • Spring Boot 版本说明
    • Spring Cloud 版本说明
    • Spring Cloud 发布计划
    • Spring Cloud 曾经发布的计划
    • 三者对应关系
  • 生产环境推荐

Spring Cloud 生态圈概览

Spring Cloud

https://spring.io/projects/spring-cloud

Spring Cloud Alibaba

https://github.com/alibaba/spring-cloud-alibaba/blob/master/README-zh.md

版本选择

Spring Boot 版本说明

  • 其中2:表示的主版本号,表示是我们的SpringBoot第二代产品
  • 其中6:表示的是次版本号,增加了一些新的功能但是主体的架构是没有变化的,是兼容的
  • 其中3:表示的是bug修复版

所以2.6.3合起来就是springboot的第二代版本的第6个小版本的 第3次bug修复版本

RELEASE版本的演进过程:

snapshot(开发版本) ----------------> M1…M2(里程碑版本,在正式版发布之前 会出几个里程碑的版本) --------------> release(正式版本)

代码语言:javascript复制
<dependency>
    <groupId>org.springframework.bootgroupId>
    <artifactId>spring-boot-starter-parentartifactId>
    <version>2.6.3version>
    <type>pomtype>
dependency>

Spring Cloud 版本说明

老的wiki页面: https://github.com/spring-projects/spring-cloud/wiki

第一代版本:Angle 第二代版本:Brixton 第三代版本:Camden 第四代版本:Edgware 第五代版本:Finchley 第六代版本:GreenWich (G版本及之前的版本 都 End Of Life 了 ) 第七代版本:Hoxton 第八代版本 2020.0.x (ILford) 第九代版本 2021.0.x (Jubilee)

新的版本发布wiki页面

https://github.com/spring-cloud/spring-cloud-release/wiki

https://github.com/spring-cloud/spring-cloud-release/wiki/Spring-Cloud-2021.0-Release-Notes

  • SNAPSHOT: 快照版本,随时可能修改
  • M: MileStone,M1表示第1个里程碑版本,一般同时标注PRE,表示预览版版。
  • RC 版本英文版名字叫Release Candidate(候选版本)一般标注PRE表示预览版
  • SR: Service Release,SR1表示第1个正式版本,一般同时标注GA:(GenerallyAvailable),表示 稳定版本

举个例子

比如还有一种RELEASE版本(正式版本) 比如 Hoxton版本顺序Hoxton.release----->发现bug----->Hoxton.SR1------>发现bug---->Hoxton.SR2…

Spring Cloud 发布计划

https://github.com/spring-cloud/spring-cloud-release/milestones

Spring Cloud 曾经发布的计划

https://github.com/spring-cloud/spring-cloud-release/releases

https://github.com/spring-cloud/spring-cloud-release/tags

三者对应关系

https://github.com/alibaba/spring-cloud-alibaba/wiki/版本说明

生产环境推荐

-坚决不用非稳定版本/ end-of-life(不维护)版本

  • release版本先等等,等别人去踩踩坑
  • SR2以后的可以放心使用【推荐 】

0 人点赞