1. 组件版本关系

Spring Cloud Alibaba Version Sentinel Version Nacos Version RocketMQ Version Dubbo Version Seata Version
2.2.6.RELEASE 1.8.1 1.4.2 4.4.0 2.7.8 1.3.0
2021.1 or 2.2.5.RELEASE or 2.1.4.RELEASE or 2.0.4.RELEASE 1.8.0 1.4.1 4.4.0 2.7.8 1.3.0
2.2.3.RELEASE or 2.1.3.RELEASE or 2.0.3.RELEASE 1.8.0 1.3.3 4.4.0 2.7.8 1.3.0
2.2.1.RELEASE or 2.1.2.RELEASE or 2.0.2.RELEASE 1.7.1 1.2.1 4.4.0 2.7.6 1.2.0
2.2.0.RELEASE 1.7.1 1.1.4 4.4.0 2.7.4.1 1.0.0
2.1.1.RELEASE or 2.0.1.RELEASE or 1.5.1.RELEASE 1.7.0 1.1.4 4.4.0 2.7.3 0.9.0
2.1.0.RELEASE or 2.0.0.RELEASE or 1.5.0.RELEASE 1.6.3 1.1.1 4.4.0 2.7.3 0.7.1

2. 毕业版本依赖关系(推荐使用)

Spring Cloud Version Spring Cloud Alibaba Version Spring Boot Version
Spring Cloud 2020.0.1 2021.1 2.4.2
Spring Cloud Hoxton.SR9 2.2.6.RELEASE 2.3.2.RELEASE
Spring Cloud Greenwich.SR6 2.1.4.RELEASE 2.1.13.RELEASE
Spring Cloud Hoxton.SR3 2.2.1.RELEASE 2.2.5.RELEASE
Spring Cloud Hoxton.RELEASE 2.2.0.RELEASE 2.2.X.RELEASE
Spring Cloud Greenwich 2.1.2.RELEASE 2.1.X.RELEASE
Spring Cloud Finchley 2.0.4.RELEASE(停止维护,建议升级) 2.0.X.RELEASE
Spring Cloud Edgware 1.5.1.RELEASE(停止维护,建议升级) 1.5.X.RELEASE

依赖管理

Spring Cloud Alibaba BOM 包含了它所使用的所有依赖的版本。

RELEASE 版本

  • Spring Cloud 2020

如果需要使用 Spring Cloud 2020 版本,请在 dependencyManagement 中添加如下内容

<dependency><groupId>com.alibaba.cloud</groupId><artifactId>spring-cloud-alibaba-dependencies</artifactId><version>2021.1</version><type>pom</type><scope>import</scope>
</dependency>
  • Spring Cloud Hoxton

如果需要使用 Spring Cloud Hoxton 版本,请在 dependencyManagement 中添加如下内容

<dependency><groupId>com.alibaba.cloud</groupId><artifactId>spring-cloud-alibaba-dependencies</artifactId><version>2.2.6.RELEASE</version><type>pom</type><scope>import</scope>
</dependency>
  • Spring Cloud Greenwich

如果需要使用 Spring Cloud Greenwich 版本,请在 dependencyManagement 中添加如下内容

<dependency><groupId>com.alibaba.cloud</groupId><artifactId>spring-cloud-alibaba-dependencies</artifactId><version>2.1.4.RELEASE</version><type>pom</type><scope>import</scope>
</dependency>
  • Spring Cloud Finchley

如果需要使用 Spring Cloud Finchley 版本,请在 dependencyManagement 中添加如下内容

<dependency><groupId>com.alibaba.cloud</groupId><artifactId>spring-cloud-alibaba-dependencies</artifactId><version>2.0.4.RELEASE</version><type>pom</type><scope>import</scope>
</dependency>
  • Spring Cloud Edgware

如果需要使用 Spring Cloud Edgware 版本,请在 dependencyManagement 中添加如下内容

<dependency><groupId>com.alibaba.cloud</groupId><artifactId>spring-cloud-alibaba-dependencies</artifactId><version>1.5.1.RELEASE</version><type>pom</type><scope>import</scope>
</dependency>

3. 孵化器版本依赖关系(不推荐使用)

Spring Cloud Version Spring Cloud Alibaba Version Spring Boot Version
Spring Cloud Greenwich 0.9.0.RELEASE 2.1.X.RELEASE
Spring Cloud Finchley 0.2.X.RELEASE 2.0.X.RELEASE
Spring Cloud Edgware 0.1.X.RELEASE 1.5.X.RELEASE

依赖管理

Spring Cloud Alibaba BOM 包含了它所使用的所有依赖的版本。

RELEASE 版本

  • Spring Cloud Greenwich

如果需要使用 Spring Cloud Greenwich 版本,请在 dependencyManagement 中添加如下内容

<dependency><groupId>org.springframework.cloud</groupId><artifactId>spring-cloud-alibaba-dependencies</artifactId><version>0.9.0.RELEASE</version><type>pom</type><scope>import</scope>
</dependency>
  • Spring Cloud Finchley

如果需要使用 Spring Cloud Finchley 版本,请在 dependencyManagement 中添加如下内容

<dependency><groupId>org.springframework.cloud</groupId><artifactId>spring-cloud-alibaba-dependencies</artifactId><version>0.2.2.RELEASE</version><type>pom</type><scope>import</scope>
</dependency>
  • Spring Cloud Edgware

如果需要使用 Spring Cloud Edgware 版本,请在 dependencyManagement 中添加如下内容

<dependency><groupId>org.springframework.cloud</groupId><artifactId>spring-cloud-alibaba-dependencies</artifactId><version>0.1.2.RELEASE</version><type>pom</type><scope>import</scope>
</dependency>

参考:

  • spring-cloud-alibaba文档:github.com/alibaba/spr…

  • 版本对应文档:github.com/alibaba/spr…

springcloud与springcloudalibaba版本对应关系相关推荐

  1. SpringBoot、SpringCloud、SpringCloudAlibaba的版本对应关系

    文章目录 1.SpringBoot 和 Spring Cloud版本依赖关系 0)Spring Cloud版本名变更 1)SpringCloud发布版本与SpringBoot版本兼容性的表格 2)访问 ...

  2. 一篇文章让你轻松搞定SpringBoot和SpringCloud之间的版本选择!!!

    首先说明一下我认为我没有乱立标题或者是夸大标题,这篇文章肯定能告诉你该如何选择SpringBoot和SpringCloudd之间的版本,资料也是从官网拿的,并非胡乱捏造. 学的越来越多,基础不牢固,每 ...

  3. 通过官方查看springCloud,springBoot版本对应关系

    文章目录 1 官方文档查看 2 更优的查看方式 1 官方文档查看 在官网的Spring Cloud版本Hoxton SR7的Reference Doc中的内容如下,指定支持的boot版本为2.3.2. ...

  4. 【SpringCloud】Spring cloud 版本与 spring boot版本对应关系

    1. 概述 首先,spring clou的版本是以伦敦地铁站的站名命名的,而且按照字母排序,其次版本中的SR代表service release,是每个大版本发布的小版本. 2.关系 版本间关系,必须参 ...

  5. spring boot和spring cloud版本对应关系

    在我们引入spring cloud的时候,一定要注意spring cloud和spring boot的版本是有对应关系的,如果使用了不对应的版本,往往会导致一些奇奇怪怪得bug: 具体对应关系可以通过 ...

  6. Spring Cloud、Spring Cloud Alibaba、Spring Boot版本对应关系

    目录 Spring Cloud.Spring Cloud Alibaba.Spring Boot版本对应关系 Spring Cloud Alibaba组件版本对应关系 官网文档链接 Spring Cl ...

  7. 肝了很久,冰河整理出这份4万字的SpringCloud与SpringCloudAlibaba学习笔记!!

    写在前面 不少小伙伴让我整理下有关SpringCloud和SpringCloudAlibaba的知识点,经过3天的收集和整理,冰河整理出这份4万字的SpringCloud与SpringCloudAli ...

  8. cuda cudnn pytorch版本对应关系

    1. cuda和cudnn版本对应关系 https://developer.nvidia.com/rdp/cudnn-archive#a-collapse742-10 转载于:https://www. ...

  9. 如何确定python对应电脑版本_查看Anaconda版本、Anaconda和python版本对应关系和快速下载...

    官网 查看Anaconda版本 (C:\ProgramData\Anaconda3) C:\Users\Administrator>conda -V conda 4.3.30 Anaconda和 ...

  10. Android和SQLite版本对应关系

    Android和SQLite版本对应关系 今天Xamarin群有人问到Android和SQLite版本如何对应,顺手查了一下,贴出来. SQLite 3.8.4.3: • 21-5.0-Lollipo ...

最新文章

  1. debian10 简单的bash脚本监控apache运行状态
  2. idl结果显示窗口如何缩小_IDL操作步骤
  3. Python-使用PyQT生成图形界面
  4. wpf ui框架_RapidCAX 开源UI框架
  5. 【Python】列表 list 添加元素的几种方法
  6. elementui 搭建布局页面路由_【项目实践】使用Vue.js和ElementUI快速实现后台管理系统的界面布局...
  7. vivado安装_Vivado下载与安装指南
  8. Spring事务配置方式(一) 拦截器方式配置
  9. Spring MVC-页面重定向示例(转载实践)
  10. Linux操作系统下信号处理函数
  11. 企业微信SCRM怎么弄永久群二维码?可以实现社群私域流量裂变吗?
  12. 如何让excel说话,vba的speak功能
  13. easyUI打开tab页面
  14. Spring Boot使用方法小札(3):应用启动后做一些事
  15. Jmeter 录制手机脚本
  16. 赞!华为19级大牛分享503NoSQL进阶笔记,横扫一切
  17. 2020-10-23
  18. 作业2021-03-12
  19. iptables 禁止访问全部URL,开放部分URL
  20. 非此即彼的逻辑错误_英语逻辑错误一览

热门文章

  1. VS 2005/2008 Web Setup Project
  2. 设计模式 (九) 组合模式
  3. ZooKeeper解读
  4. Java 12网络编程
  5. bzoj2655 calc
  6. 面向对象编程设计练习题(2)
  7. 2016前端的收藏夹
  8. ES插件elasticsearch-mapper-attachments 2.3.4及各个版本正确下载地址
  9. 浅谈多个社交账号的登录注册设计
  10. 自制操作系统:引导扇区的实现