(一)Spring Cloud简介
因为Spring Cloud Alibaba是Spring Cloud的一个子项目,所以在介绍Spring Cloud Alibaba之前,先简单说一下Spring Cloud。Spring Cloud是快速构建分布式系统的工具集,包括配置管理、服务注册与服务发现、路由、端到端的调用、负载均衡、断路器、全局锁、分布式消息等,对于这些功能,Spring Cloud也提供了多种选择,例如想实现服务注册与服务发现,有Eureka、Consul、Nacos、Zookeeper,实现端到端的调用,可以选择RestTemplate或者Feign,具体选择使用那种技术需根据实际项目分析选择,没有最好的只有最适用的。例外Spring Cloud是机遇springboot的,所以不了解springboot的朋友,需要学习一下springboot相关知识,直接搜索引擎就行啦。
Spring Cloud官方文档地址:https://spring.io/projects/spring-cloud
(二)什么是Spring Cloud Alibaba
1.是Spring Cloud的子项目
2.致力于提供微服务开发的一站式解决方案
项目包含开发分布式应用服务的必需组件,方便开发者通过 Spring Cloud 编程模型轻松使用这些组件来开 发分布式应用服务;
基于Spring Cloud,符合Spring Cloud标准;
是阿里的微服务解决方案,只需要添加一些注解和少量配置,就可以将 Spring Cloud 应用接入阿里分布式应用解决方案,通过阿里中间件来迅速搭建分布式应用系统。
3.Spring Cloud Alibaba提供了很多功能:
服务限流降级:默认支持 WebServlet、WebFlux, OpenFeign、RestTemplate、Spring Cloud Gateway, Zuul, Dubbo 和 RocketMQ 限流降级功能的接入,可以在运行时通过控制台实时修改限流降级规则,还支持查看限流降级 Metrics 监控。
服务注册与发现:适配 Spring Cloud 服务注册与发现标准,默认集成了 Ribbon 的支持。
分布式配置管理:支持分布式系统中的外部化配置,配置更改时自动刷新。
消息驱动能力:基于 Spring Cloud Stream 为微服务应用构建消息驱动能力。
分布式事务:使用 @GlobalTransactional 注解, 高效并且对业务零侵入地解决分布式事务问题。。
阿里云对象存储:阿里云提供的海量、安全、低成本、高可靠的云存储服务。支持在任何应用、任何时间、任何地点存储和访问任意类型的数据。
分布式任务调度:提供秒级、精准、高可靠、高可用的定时(基于 Cron 表达式)任务调度服务。同时提供分布式的任务执行模型,如网格任务。网格任务支持海量子任务均匀分配到所有 Worker(schedulerx-client)上执行。
阿里云短信服务:覆盖全球的短信服务,友好、高效、智能的互联化通讯能力,帮助企业迅速搭建客户触达通道。
因为Spring Cloud Alibaba是基于Spring Cloud Common的规范实现的,所以在构建项目时,一定要注意spingboot、Spring Cloud和Spring Cloud Alibaba三者之间的关系,具体的版本关系如下:
因为Spring Cloud Alibaba已经孵化成功,所以在版本的选择上肯定是选择毕业版本,在生产环境中的版本选择上一定要注意坚决不用非稳定版本,并且尽量用最新的一代的。
(三)项目整合Spring Cloud Alibaba
项目整合Spring Cloud Alibaba很简单,只要添加依赖即可:
<dependencyManagement>
<dependencies>
<!--整合spring cloud-->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>Greenwich.SR2</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<!--整合spring cloud alibaba-->
<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官方文档地址:https://github.com/alibaba/spring-cloud-alibaba/