1. XenForo 1.5.14 中文版——支持中文搜索!现已发布!查看详情
  2. Xenforo 爱好者讨论群:215909318 XenForo专区

新闻 Spring Cloud 子项目 Spring Cloud Edgware.SR1 发布 下载

本帖由 漂亮的石头2018-01-17 发布。版面名称:软件资讯

  1. 漂亮的石头

    漂亮的石头 版主 管理成员

    注册:
    2012-02-10
    帖子:
    488,114
    赞:
    47
    Spring Cloud Edgware 的 Service Release 1 (SR1) 版本已发布,本次更新主要是对其包含的一些模块进行了升级,查看发布说明以了解更多信息。Spring Cloud Edgware 基于 Spring Boot 1.5.x 而构建。

    以下模块作为 Edgware.SR1 的一部分进行了更新:

    MODULEVERSION
    Spring Cloud Gateway1.0.1.RELEASE
    Spring Cloud StreamDitmars.SR3
    Spring Cloud Config1.4.1.RELEASE
    Spring Cloud Netflix1.4.2.RELEASE
    Spring Cloud Commons1.3.1.RELEASE
    Spring Cloud Consul1.3.1.RELEASE
    Spring Cloud Sleuth1.3.1.RELEASE
    Spring Cloud Security1.2.2.RELEASE
    Spring Cloud Contract1.2.2.RELEASE

    使用

    通过 BOM(仅依赖关系管理)和 Maven 开始使用:

    <dependencyManagement>
    <dependencies>
    <dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-dependencies</artifactId>
    <version>Edgware.SR1</version>
    <type>pom</type>
    <scope>import</scope>
    </dependency>
    </dependencies>
    </dependencyManagement>
    <dependencies>
    <dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-starter-config</artifactId>
    </dependency>
    <dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
    </dependency>
    ...
    </dependencies>


    Gradle

    buildscript {
    dependencies {
    classpath "io.spring.gradle:dependency-management-plugin:1.0.2.RELEASE"
    }
    }



    apply plugin: "io.spring.dependency-management"

    dependencyManagement {
    imports {
    mavenBom 'org.springframework.cloud:spring-cloud-dependencies:Edgware.SR1'
    }
    }

    dependencies {
    compile 'org.springframework.cloud:spring-cloud-starter-config'
    compile 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-client'
    ...
    }


    点此查看发布主页
    Spring Cloud 子项目 Spring Cloud Edgware.SR1 发布下载地址
     
正在加载...