Chinaunix首页 | 论坛 | 博客
  • 博客访问: 544332
  • 博文数量: 298
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 3077
  • 用 户 组: 普通用户
  • 注册时间: 2019-06-17 10:57
文章分类

全部博文(298)

文章存档

2022年(96)

2021年(201)

2019年(1)

我的朋友

分类: Java

2022-02-15 11:21:30


点击(此处)折叠或打开

  1. 组件版本关系
  2. 每个 Spring Cloud Alibaba 版本及其自身所适配的各组件对应版本(经过验证,自行搭配各组件版本不保证可用)如下表所示(最新版本用*标记):

  3. Spring Cloud Alibaba Version    Sentinel Version    Nacos Version    RocketMQ Version    Dubbo Version    Seata Version
  4. 2.2.7.RELEASE*

  5. 1.8.1

  6. 2.0.3

  7. 4.6.1

  8. 2.7.13

  9. 1.3.0

  10. 2.2.6.RELEASE

  11. 1.8.1

  12. 1.4.2

  13. 4.4.0

  14. 2.7.8

  15. 1.3.0

  16. 2021.1 or 2.2.5.RELEASE or 2.1.4.RELEASE or 2.0.4.RELEASE

  17. 1.8.0

  18. 1.4.1

  19. 4.4.0

  20. 2.7.8

  21. 1.3.0

  22. 2.2.3.RELEASE or 2.1.3.RELEASE or 2.0.3.RELEASE

  23. 1.8.0

  24. 1.3.3

  25. 4.4.0

  26. 2.7.8

  27. 1.3.0

  28. 2.2.1.RELEASE or 2.1.2.RELEASE or 2.0.2.RELEASE

  29. 1.7.1

  30. 1.2.1

  31. 4.4.0

  32. 2.7.6

  33. 1.2.0

  34. 2.2.0.RELEASE

  35. 1.7.1

  36. 1.1.4

  37. 4.4.0

  38. 2.7.4.1

  39. 1.0.0

  40. 2.1.1.RELEASE or 2.0.1.RELEASE or 1.5.1.RELEASE

  41. 1.7.0

  42. 1.1.4

  43. 4.4.0

  44. 2.7.3

  45. 0.9.0

  46. 2.1.0.RELEASE or 2.0.0.RELEASE or 1.5.0.RELEASE

  47. 1.6.3

  48. 1.1.1

  49. 4.4.0

  50. 2.7.3

  51. 0.7.1

  52. 毕业版本依赖关系(推荐使用)
  53. 下表为按时间顺序发布的 Spring Cloud Alibaba 以及对应的适配 Spring Cloud 和 Spring Boot 版本关系(由于 Spring Cloud 版本命名有调整,所以对应的 Spring Cloud Alibaba 版本号也做了对应变化)

  54. Spring Cloud Alibaba Version    Spring Cloud Version    Spring Boot Version
  55. 2.2.7.RELEASE

  56. Spring Cloud Hoxton.SR12

  57. 2.3.12.RELEASE

  58. 2021.1 (项目源码fhadmin.cn)

  59. Spring Cloud 2020.0.1

  60. 2.4.2

  61. 2.2.6.RELEASE

  62. Spring Cloud Hoxton.SR9

  63. 2.3.2.RELEASE

  64. 2.1.4.RELEASE

  65. Spring Cloud Greenwich.SR6

  66. 2.1.13.RELEASE

  67. 2.2.1.RELEASE

  68. Spring Cloud Hoxton.SR3

  69. 2.2.5.RELEASE

  70. 2.2.0.RELEASE

  71. Spring Cloud Hoxton.RELEASE

  72. 2.2.X.RELEASE

  73. 2.1.2.RELEASE

  74. Spring Cloud Greenwich

  75. 2.1.X.RELEASE

  76. 2.0.4.RELEASE(停止维护,建议升级)

  77. Spring Cloud Finchley

  78. 2.0.X.RELEASE

  79. 1.5.1.RELEASE(停止维护,建议升级)

  80. Spring Cloud Edgware

  81. 1.5.X.RELEASE

  82. 依赖管理
  83. Spring Cloud Alibaba BOM 包含了它所使用的所有依赖的版本。

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

  87. <dependency>
  88.     <groupId>com.alibaba.cloud</groupId>
  89.     <artifactId>spring-cloud-alibaba-dependencies</artifactId>
  90.     <version>2021.1</version>
  91.     <type>pom</type>
  92.     <scope>import</scope>
  93. </dependency>
  94. Spring Cloud Hoxton
  95. 如果需要使用 Spring Cloud Hoxton 版本,请在 dependencyManagement 中添加如下内容

  96. <dependency>
  97.     <groupId>com.alibaba.cloud</groupId>
  98.     <artifactId>spring-cloud-alibaba-dependencies</artifactId>
  99.     <version>2.2.7.RELEASE</version>
  100.     <type>pom</type>
  101.     <scope>import</scope>
  102. </dependency>
  103. Spring Cloud Greenwich
  104. 如果需要使用 Spring Cloud Greenwich 版本,请在 dependencyManagement 中添加如下内容

  105. <dependency>
  106.     <groupId>com.alibaba.cloud</groupId>
  107.     <artifactId>spring-cloud-alibaba-dependencies</artifactId>
  108.     <version>2.1.4.RELEASE</version>
  109.     <type>pom</type>
  110.     <scope>import</scope>
  111. </dependency>
  112. Spring Cloud Finchley
  113. 如果需要使用 Spring Cloud Finchley 版本,请在 dependencyManagement 中添加如下内容

  114. <dependency>
  115.     <groupId>com.alibaba.cloud</groupId>
  116.     <artifactId>spring-cloud-alibaba-dependencies</artifactId>
  117.     <version>2.0.4.RELEASE</version>
  118.     <type>pom</type>
  119.     <scope>import</scope>
  120. </dependency>
  121. Spring Cloud Edgware
  122. 如果需要使用 Spring Cloud Edgware 版本,请在 dependencyManagement 中添加如下内容

  123. <dependency>
  124.     <groupId>com.alibaba.cloud</groupId>
  125.     <artifactId>spring-cloud-alibaba-dependencies</artifactId>
  126.     <version>1.5.1.RELEASE</version>
  127.     <type>pom</type>
  128.     <scope>import</scope>
  129. </dependency>
  130. 孵化器版本依赖关系(不推荐使用)
  131. Spring Cloud Version    Spring Cloud Alibaba Version    Spring Boot Version
  132. Spring Cloud Greenwich

  133. 0.9.0.RELEASE

  134. 2.1.X.RELEASE

  135. Spring Cloud Finchley

  136. 0.2.X.RELEASE

  137. 2.0.X.RELEASE

  138. Spring Cloud Edgware

  139. 0.1.X.RELEASE

  140. 1.5.X.RELEASE

  141. Note
  142. 请注意, Spring Cloud Edgware 最低支持 Edgware.SR5 版本
  143. 依赖管理
  144. Spring Cloud Alibaba BOM 包含了它所使用的所有依赖的版本。

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

  148. <dependency>
  149.     <groupId>org.springframework.cloud</groupId>
  150.     <artifactId>spring-cloud-alibaba-dependencies</artifactId>
  151.     <version>0.9.0.RELEASE</version>
  152.     <type>pom</type>
  153.     <scope>import</scope>
  154. </dependency>
  155. Spring Cloud Finchley
  156. 如果需要使用 Spring Cloud Finchley 版本,请在 dependencyManagement 中添加如下内容

  157. <dependency>
  158.     <groupId>org.springframework.cloud</groupId>
  159.     <artifactId>spring-cloud-alibaba-dependencies</artifactId>
  160.     <version>0.2.2.RELEASE</version>
  161.     <type>pom</type>
  162.     <scope>import</scope>
  163. </dependency>
  164. Spring Cloud Edgware
  165. 如果需要使用 Spring Cloud Edgware 版本,请在 dependencyManagement 中添加如下内容

  166. <dependency>
  167.     <groupId>org.springframework.cloud</groupId>
  168.     <artifactId>spring-cloud-alibaba-dependencies</artifactId>
  169.     <version>0.1.2.RELEASE</version>
  170.     <type>pom</type>
  171.     <scope>import</scope>
  172. </dependency>

阅读(482) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~