spring cloud alibaba(1)

文档

Spring官网:https://spring.io/projects/spring-cloud-alibaba
GitHub:https://github.com/alibaba/spring-cloud-alibaba
GitHub中文文档:https://github.com/alibaba/spring-cloud-alibaba/blob/master/README-zh.md
Spring Cloud Alibaba参考文档:https://spring-cloud-alibaba-group.github.io/github-pages/greenwich/spring-cloud-alibaba.html
特定版本
https://github.com/alibaba/spring-cloud-alibaba/tree/2.2.7.RELEASE
https://github.com/alibaba/spring-cloud-alibaba/blob/2.2.x/README-zh.md

核心项目依赖

<!--spring boot dependencies-->
<dependencyManagement>
	<dependencies>
		<dependency>
			<groupId>org.springframework.boot</groupId>
		    <artifactId>spring-boot-dependencies</artifactId>
		    <version>2.3.12.RELEASE</version>
		    <scope>import</scope>
		    <type>pom</type>
		</dependency>
		<!--spring cloud dependencies-->
		<dependency>
		    <groupId>org.springframework.cloud</groupId>
		    <artifactId>spring-cloud-dependencies</artifactId>
		    <version>Hoxton.SR12</version>
		    <type>pom</type>
		    <scope>import</scope>
		</dependency>
		<!--spring cloud alibaba dependencies-->
		<dependency>
		    <groupId>com.alibaba.cloud</groupId>
		    <artifactId>spring-cloud-alibaba-dependencies</artifactId>
		    <version>2.2.7.RELEASE</version>
		    <type>pom</type>
		    <scope>import</scope>
		</dependency>
	</dependencies>
</dependencyManagement>

猜你喜欢

转载自blog.csdn.net/qq_39049011/article/details/124470429