SpringCloud和SpringBoot的版本说明

SpringCloud包含了众多子项目,每一个子项目发布时间不一定一致,所以采用了伦敦地铁站为版本说明,而不是数字。并且从A开始是第一个发布版,B是第二个,以此类推。

SpringCloud版本 SpringBoot版本
Greenwich 2.1.x
Finchley 2.0.x
Edgware 1.5.x
Dalston 1.5.x
Camden 1.4.x
Brixton 1.3.x
Angel 1.0.x

现在最新版本是Greenwich和2.1.x,如果版本不对,程序启动和运行会发生很多问题。
SpringCloud的几个发布标签有:
GA:General availability:通用版本。并且已经很稳定了,功能齐全。
RC:Release candidate:发布候选版本。功能较为齐全,相对稳定,问题应该相对少和次要,值得报告,bug将会修复。
M:Milestone build:里程碑版本。功能还不全,项目完成了一个计划,但是还是可能有问题的。
SRX:Service Release:服务发布版本。When point releases of the individual projects accumulate to a critical mass, or if there is a critical bug in one of them that needs to be available to everyone, the release train will push out "service releases" with names ending ".SRX", where "X" is a number.

在选择SpringCloud和SpringBoot版本的时候一定要考虑这些。

参考:
https://stackoverflow.com/questions/2107484/what-is-the-difference-between-springs-ga-rc-and-m2-releases
https://spring.io/projects/spring-cloud/#overview
https://en.wikipedia.org/wiki/Software_release_life_cycle

猜你喜欢

转载自blog.51cto.com/thinklili/2329744