spring cloud alibaba(1)

document

Spring official website: https://spring.io/projects/spring-cloud-alibaba
GitHub: https://github.com/alibaba/spring-cloud-alibaba
GitHub Chinese documentation: https://github.com/alibaba/spring -cloud-alibaba/blob/master/README-zh.md Spring
Cloud Alibaba reference documentation: https://spring-cloud-alibaba-group.github.io/github-pages/greenwich/spring-cloud-alibaba.htmlSpecific
Version
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

Core project dependencies

<!--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>

Guess you like

Origin blog.csdn.net/qq_39049011/article/details/124470429