1.简介
SpringCloud官方: https://spring.io/projects/spring-cloud-alibaba#overview
GitHub英文官方:https://github.com/alibaba/spring-cloud-alibaba
GitHub中文官方:https://github.com/alibaba/spring-cloud-alibaba/blob/master/README-zh.md
1.2 为什么会出现SpringCloud Alibaba
Spring Cloud Netflix项目进入维护模式
进入维护模式意思就是目前一直以后一段时间Spring Cloud Netflix提供的服务和功能就这么多了,不在开发新的组件和功能了。
1.3 了解
Spring Cloud Alibaba 致力于提供微服务开发的一站式解决方案。此项目包含开发分布式应用微服务的必需组件,方便开发者通过 Spring Cloud 编程模型轻松使用这些组件来开发分布式应用服务。
依托 Spring Cloud Alibaba,您只需要添加一些注解和少量配置,就可以将 Spring Cloud 应用接入阿里微服务解决方案,通过阿里中间件来迅速搭建分布式应用系统。
依赖
<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>