什么是Spring Cloud Alibaba

发布时间:2020-07-19 08:28:49 作者:ZeroOne01
来源:网络 阅读:1650

Spring Cloud Alibaba 致力于提供微服务开发的一站式解决方案。此项目包含开发分布式应用服务的必需组件,方便开发者通过 Spring Cloud 编程模型轻松使用这些组件来开发分布式应用服务。

依托 Spring Cloud Alibaba,您只需要添加一些注解和少量配置,就可以将 Spring Cloud 应用接入阿里分布式应用解决方案,通过阿里中间件来迅速搭建分布式应用系统。

什么是Spring Cloud Alibaba:

Spring Cloud Alibaba应用场景:

Spring Cloud Alibaba和Spring Cloud的区别和联系:

Spring Cloud标准所提供的功能:
什么是Spring Cloud Alibaba

Spring Cloud Alibaba基于Spring Cloud标准所实现的主要的功能组件:
什么是Spring Cloud Alibaba

Spring Cloud Alibaba相比于Spring Cloud:

Spring Cloud Alibaba的官方GitHub仓库地址:

https://github.com/alibaba/spring-cloud-alibaba

不管是Spring Cloud还是Spring Cloud Alibaba都是为了提供微服务开发的一站式解决方案,让微服务架构的开发更简单、方便。


那么如何在项目中整合Spring Cloud Alibaba呢?很简单,首先创建一个Spring Boot项目,然后在pom.xml文件中加入如下依赖管理即可:

<dependencyManagement>
    <dependencies>
        <!--整合Spring Cloud-->
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-dependencies</artifactId>
            <version>${spring-cloud.version}</version>
            <type>pom</type>
            <scope>import</scope>
        </dependency>
        <!--整合Spring Cloud Alibaba-->
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-alibaba-dependencies</artifactId>
            <version>${spring-cloud-alibaba.version}</version>
            <type>pom</type>
            <scope>import</scope>
        </dependency>
    </dependencies>
</dependencyManagement>

添加完以上配置后就可以在dependencies里添加Spring Cloud Alibaba相关组件的依赖项了,需要注意的是目前Spring Cloud Alibaba还没有正式孵化,所以Spring Cloud Alibaba与Spring Cloud的版本还存在依赖关系。关于版本之间的依赖关系及版本选择可以参考官方文档的版本说明

推荐阅读:
  1. Spring Cloud Alibaba的示例分析
  2. Spring Cloud Alibaba有哪些实战项目

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

spring cloud alibab spring cloud 微服务

上一篇:Linux搭建dhcp中继+DNS服务(综合实验)

下一篇:LNMP一键安装包+Thinkphp搭建基于pathinfo模式的路由(可以去除url中的.php)

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》