目录git
@github
Spring Cloud Alibaba 致力于提供微服务开发的一站式解决方案。此项目包含开发分布式应用微服务的必需组件,方便开发者经过 Spring Cloud 编程模型轻松使用这些组件来开发分布式应用服务。spring
依托 Spring Cloud Alibaba,您只须要添加一些注解和少许配置,就能够将 Spring Cloud 应用接入阿里微服务解决方案,经过阿里中间件来迅速搭建分布式应用系统。编程
Sentinel: 把流量做为切入点,从流量控制、熔断降级、系统负载保护等多个维度保护服务的稳定性。安全
Nacos: 一个更易于构建云原生应用的动态服务发现、配置管理和服务管理平台。架构
RocketMQ: 一款开源的分布式消息系统,基于高可用分布式集群技术,提供低延时的、高可靠的消息发布与订阅服务。框架
Dubbo: Apache Dubbo™ 是一款高性能 Java RPC 框架。分布式
Seata: 阿里巴巴开源产品,一个易于使用的高性能微服务分布式事务解决方案。微服务
Alibaba Cloud ACM: 一款在分布式架构环境中对应用配置进行集中管理和推送的应用配置中心产品。性能
Alibaba Cloud OSS: 阿里云对象存储服务(Object Storage Service,简称 OSS),是阿里云提供的海量、安全、低成本、高可靠的云存储服务。您能够在任何应用、任什么时候间、任何地点存储和访问任意类型的数据。
Alibaba Cloud SchedulerX: 阿里中间件团队开发的一款分布式任务调度产品,提供秒级、精准、高可靠、高可用的定时(基于 Cron 表达式)任务调度服务。
Alibaba Cloud SMS: 覆盖全球的短信服务,友好、高效、智能的互联化通信能力,帮助企业迅速搭建客户触达通道。
目前已经开源的组件有:Sentinel, Nacos,RocketMQ,Dubbo
本系列文章目的就是介绍以上开源组件的一些基本使用。
下面简单介绍一下开源组件和目前的SpringCloud、SpringBoot依赖关系。
Spring Cloud Version | Spring Cloud Alibaba Version | Spring Boot Version |
---|---|---|
Spring Cloud Greenwich | 0.9.0.RELEASE | 2.1.X.RELEASE |
Spring Cloud Finchley | 0.2.X.RELEASE | 2.0.X.RELEASE |
Spring Cloud Edgware | 0.1.X.RELEASE | 1.5.X.RELEASE |
Spring Cloud Alibaba Version | Sentinel Version | Nacos Version | RocketMQ Version | Dubbo Version | Seata Version |
---|---|---|---|---|---|
0.9.0.RELEASE or 0.2.2.RELEASE or 0.1.2.RELEASE | 1.5.2 | 1.0.0 | 4.4.0 | 2.7.1 | 0.4.2 |
0.2.1.RELEASE or 0.1.1.RELEASE | 1.4.0 | 0.6.2 | 4.3.1 | ❌ | ❌ |
0.2.0.RELEASE or 0.1.0.RELEASE | 1.3.0-GA | 0.3.0 | ❌ | ❌ | ❌ |
Spring Cloud Alibaba BOM 包含了它所使用的全部依赖的版本。
若是须要使用 Spring Cloud Greenwich 版本,请在 dependencyManagement 中添加以下内容
<dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-alibaba-dependencies</artifactId> <version>0.9.0.RELEASE</version> <type>pom</type> <scope>import</scope> </dependency>
若是须要使用 Spring Cloud Finchley 版本,请在 dependencyManagement 中添加以下内容
<dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-alibaba-dependencies</artifactId> <version>0.2.2.RELEASE</version> <type>pom</type> <scope>import</scope> </dependency>
若是须要使用 Spring Cloud Edgware 版本,请在 dependencyManagement 中添加以下内容
<dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-alibaba-dependencies</artifactId> <version>0.1.2.RELEASE</version> <type>pom</type> <scope>import</scope> </dependency>
参考:
https://github.com/alibaba/spring-cloud-alibaba/blob/master/README-zh.md https://github.com/alibaba/spring-cloud-alibaba/wiki