美文网首页Spring Cloud
Spring Cloud是什么

Spring Cloud是什么

作者: coderlan | 来源:发表于2018-02-06 01:00 被阅读0次

Spring Cloud是Java微服务的一套解决方案,包含了基于Spring Boot的一系列组件。

使用方式

<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-dependencies</artifactId>
            <version>Dalston.SR5</version>
            <type>pom</type>
            <scope>import</scope>
        </dependency>
    </dependencies>
</dependencyManagement>

可以把Spring Cloud的依赖添加到dependencyManagement中,按需引用所需组件即可。

相关文章

网友评论

    本文标题:Spring Cloud是什么

    本文链接:https://www.haomeiwen.com/subject/ebswzxtx.html