Spring Cloud Alibaba - 02 SpringCloud SpringCloud Alibaba SpringBoot的生产版本选择
Posted 小小工匠
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring Cloud Alibaba - 02 SpringCloud SpringCloud Alibaba SpringBoot的生产版本选择相关的知识,希望对你有一定的参考价值。
文章目录
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(正式版本)
<!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-parent -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.6.3</version>
<type>pom</type>
</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/%E7%89%88%E6%9C%AC%E8%AF%B4%E6%98%8E
生产环境推荐
-坚决不用非稳定版本/ end-of-life(不维护)版本
- release版本先等等,等别人去踩踩坑
- SR2以后的可以放心使用【推荐 】
以上是关于Spring Cloud Alibaba - 02 SpringCloud SpringCloud Alibaba SpringBoot的生产版本选择的主要内容,如果未能解决你的问题,请参考以下文章
Spring Cloud Alibaba商城实战项目基础篇(day02)
Spring Cloud Alibaba系列nacos作为服务注册中心
Spring Cloud Alibaba系列nacos作为服务注册中心