spring cloud alibaba依赖
时间: 2023-08-25 19:05:15 浏览: 102
gowhere:Spring Cloud阿里巴巴+ Spring Boot + Docker微服务
对不起,我之前的回答似乎不完整。以下是一些常用的 Spring Cloud Alibaba 版本依赖:
1. Spring Boot 版本:通常与 Spring Cloud Alibaba 一起使用的 Spring Boot 的版本是2.3.x 或者更高版本。
2. Spring Cloud Alibaba 版本:可以根据你的需求选择最新的版本。当前最新版本是2.2.3.RELEASE。
在你的项目中,可以使用以下 Maven 依赖引入 Spring Cloud Alibaba:
```xml
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
<version>2.2.3.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
<version>2.2.3.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
<version>2.2.3.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-rocketmq</artifactId>
<version>2.2.3.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-c
阅读全文