实践Spring Cloud Alibaba

spring cloud alibaba依赖管理

1
2
3
4
5
6
7
8
9
10
11
<dependencyManagement>
	<dependencies>
		<dependency>
			<groupId>com.alibaba.cloud</groupId>
			<artifactId>spring-cloud-alibaba-dependencies</artifactId>
          	<version>2.1.0.RELEASE</version>
  			<type>pom</type>
 			<scope>import</scope>
		</dependency>
	</dependencies>
</dependencyManagement>

spring-cloud-alibaba-dependencies继承spring-cloud-dependencies-parent

1
2
3
4
5
6
<parent>
	<artifactId>spring-cloud-dependencies-parent</artifactId>
	<groupId>org.springframework.cloud</groupId>
	<version>2.1.6.RELEASE</version>
 	<relativePath/>
</parent>

Spring Cloud Alibaba【Github】 provides a one-stop solution for application development for the distributed solutions of Alibaba middleware.

微服务领域是不是要变天了?Spring Cloud Alibaba正式入驻Spring Cloud官方孵化器!