springboot2.3.9使用spring-cloud-alibaba-dependencies依赖应该使用什么颁布
时间: 2023-12-13 20:03:18 浏览: 140
spring-data-commons-2.3.9.RELEASE.jar中文-英文对照文档.zip
在使用Spring Boot 2.3.9版本时,如果需要使用Spring Cloud Alibaba的相关组件,可以引入以下依赖:
```xml
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-alibaba-dependencies</artifactId>
<version>2.2.5.RELEASE</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
```
其中,`spring-cloud-alibaba-dependencies`的版本号可以根据您的实际需求进行修改。需要注意的是,这里使用的是Spring Cloud Alibaba 2.2.5.RELEASE版本的依赖。如果您需要使用其他版本的Spring Cloud Alibaba,可以相应地修改版本号。
阅读全文