Spring Cloud Finchley.M7 发布

发布 | Ryan Baxter | 2018年2月27日 | ...

我代表社区,很高兴地宣布 Spring Cloud Finchley 发布列车里程碑版本 7 (M7) 今天已发布。该版本可以在 Spring Milestone 仓库中找到。此版本与 Spring Boot 2.0.0.RC2 兼容。您可以查看 Finchley 的 发行说明以获取更多信息

Finchley 发布列车中的显著变化

Spring Cloud Netflix

  • 所有与 Feign 相关的代码已移至单独的项目 Spring Cloud OpenFeign
  • 使用 Spring Boot 2.0.0.RC2 时,Hystrix Webflux 端点存在已知问题。您可以关注 Reactor 中的此 问题 以获取更多信息。

Spring Cloud Openfeign

包含以前在 Spring Cloud Netflix 中的所有 Feign 代码的新 项目

Spring Cloud Gateway

以下模块已作为 Finchley.M7 的一部分进行了更新

模块 版本
Spring Cloud Gateway 2.0.0.M7
Spring Cloud Sleuth 2.0.0.M7
Spring Cloud Zookeeper 2.0.0.M6
Spring Cloud Build 2.0.0.RC1
Spring Cloud Consul 2.0.0.M6
Spring Cloud Netflix 2.0.0.M7
Spring Cloud Aws 2.0.0.M4
Spring Cloud Contract 2.0.0.M7
Spring Cloud Cloudfoundry 2.0.0.M3
Spring Cloud Security 2.0.0.M2
Spring Cloud Dependencies 2.0.0.RC1
Spring Cloud Commons 2.0.0.M7
Spring Cloud Config 2.0.0.M7
Spring Cloud Task 2.0.0.M3
Spring Cloud Bus 2.0.0.M6
Spring Cloud Openfeign 2.0.0.M1
Spring Cloud Stream Elmhurst.RC1
Spring Boot 2.0.0.RC2
Spring Cloud Vault 2.0.0.M6

与往常一样,我们欢迎您在 GitHubGitterStack OverflowTwitter 上提供反馈。

使用 Maven 和 BOM(仅依赖管理)开始

<repositories>
    <repository>
        <id>spring-milestones</id>
        <name>Spring Milestones</name>
        <url>http://repo.spring.io/milestone</url>
        <snapshots>
            <enabled>false</enabled>
        </snapshots>
    </repository>
</repositories>
<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-dependencies</artifactId>
            <version>Finchley.M7</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"
    }
}

repositories {
    maven {
        url 'http://repo.spring.io/milestone'
    }
}

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

dependencyManagement {
    imports {
        mavenBom 'org.springframework.cloud:spring-cloud-dependencies:Finchley.M7'
    }
}

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

获取 Spring Newsletter

通过 Spring Newsletter 保持联系

订阅

领先一步

VMware 提供培训和认证,助您快速提升技能。

了解更多

获取支持

Tanzu Spring 在一个简单的订阅中提供 OpenJDK™、Spring 和 Apache Tomcat® 的支持和二进制文件。

了解更多

即将举行的活动

查看 Spring 社区中所有即将举行的活动。

查看全部