<dependencyManagement>
<dependencies>
<!-- 整合spring cloud -->
<!--
https://mvnrepository.com/artifact/org.springframework.cloud/spring-cloud-dependencies -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>2022.0.3</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<!-- 整合spring cloud alibaba -->
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-alibaba-dependencies</artifactId>
<version>2022.0.0.0-RC2</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
spring cloud, spring cloud alibaba的版本映射
最新推荐文章于 2025-02-27 13:21:36 发布
该文章展示了如何在项目中整合SpringCloud和SpringCloudAlibaba。通过在<dependencyManagement>标签内引入特定版本的依赖管理pom文件,确保项目使用的一致性和稳定性。
1466





