spring-cloud-alibaba-dependencies都有哪些版本
时间: 2024-01-17 07:02:57 浏览: 145
截至2021年11月,spring-cloud-alibaba-dependencies所包含的版本如下:
- 2.2.3.RELEASE
- 2.2.4.RELEASE
- 2.2.5.RELEASE
- 2.2.6.RELEASE
- 2.2.7.RELEASE
- 2.2.8.RELEASE
- 2.2.9.RELEASE
- 2.2.10.RELEASE
- 2.2.11.RELEASE
- 2.2.12.RELEASE
- 2.2.13.RELEASE
- 2.2.14.RELEASE
- 2.2.15.RELEASE
- 2.2.16.RELEASE
- 2.2.17.RELEASE
- 2.2.18.RELEASE
- 2.2.19.RELEASE
- 2.2.20.RELEASE
- 2.2.21.RELEASE
- 2.2.22.RELEASE
- 2.2.23.RELEASE
- 2.2.24.RELEASE
- 2.2.25.RELEASE
- 2.2.26.RELEASE
- 2.2.27.RELEASE
- 2.2.28.RELEASE
- 2.2.29.RELEASE
- 2.2.30.RELEASE
- 2.2.31.RELEASE
- 2.2.32.RELEASE
- 2.2.33.RELEASE
- 2.2.34.RELEASE
- 2.2.35.RELEASE
- 2.2.36.RELEASE
- 2.2.37.RELEASE
- 2021.0.0
相关问题
spring-cloud-starter-alibaba-nacos-discovery与spring-cloud-alibaba-dependencies的版本对应
spring-cloud-starter-alibaba-nacos-discovery与spring-cloud-alibaba-dependencies的版本是有对应关系的。在使用spring-cloud-starter-alibaba-nacos-discovery时,您需要根据您的项目需求,选择与之兼容的spring-cloud-alibaba-dependencies版本。
通常情况下,您可以在Spring Cloud Alibaba官方文档或Github仓库中找到版本对应关系的说明。您可以查看spring-cloud-alibaba-dependencies的文档或pom.xml文件,其中会列出与之兼容的各个组件的版本号。
举例来说,如果您选择使用spring-cloud-alibaba-dependencies的2.2.1.RELEASE版本,那么对应的spring-cloud-starter-alibaba-nacos-discovery版本可能是2.2.1.RELEASE或者其他与之兼容的版本。
请注意,保您选择的版本是兼容的,以避免可能出现的依赖冲突或不兼容的情况。
如果您有具体的版本需求,我可以为您提供更具体的版本对应信息。
spring-cloud-alibaba-dependencies
`spring-cloud-alibaba-dependencies`是一个Maven BOM(Bill of Materials),包含了Spring Cloud Alibaba的所有依赖版本。通过引入`spring-cloud-alibaba-dependencies`,可以简化Spring Cloud Alibaba项目的依赖管理。它提供了以下依赖:
- `spring-cloud-alibaba-dependencies`:Spring Cloud Alibaba版本管理器
- `spring-cloud-starter-alibaba-nacos-discovery`:Nacos服务发现
- `spring-cloud-starter-alibaba-nacos-config`:Nacos配置中心
- `spring-cloud-starter-alibaba-sentinel`:Sentinel限流熔断
- `spring-cloud-starter-alibaba-seata`:Seata分布式事务
- `spring-cloud-starter-alibaba-rocketmq`:RocketMQ消息队列
- `spring-cloud-starter-alibaba-dubbo`:Dubbo远程调用
使用`spring-cloud-alibaba-dependencies`需要在`pom.xml`文件中引入如下配置:
```xml
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-alibaba-dependencies</artifactId>
<version>2.2.1.RELEASE</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
```
引入该依赖后,其他Spring Cloud Alibaba组件的依赖版本就可以省略了。例如,使用Nacos作为服务发现和配置中心,只需要引入以下依赖:
```xml
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
</dependency>
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
</dependency>
```
Spring Cloud Alibaba会自动使用`spring-cloud-alibaba-dependencies`中定义的版本。
阅读全文