Spring Cloud Finchley.SR1 已发布

发布 | Ryan Baxter | 2018年8月1日 | ...

我代表社区高兴地宣布,Spring Cloud Finchley 发布列车的 SR1(服务版本)现已可用。该版本可在 Maven Central 中找到。您可以查看 Finchley 的 发行说明以获取更多信息

Spring Cloud Gateway

  • 错误修复。值得注意的是那些处理空主体和无内容类型的错误。
  • 支持 CORS 配置 #229
  • 响应超时配置 #371
  • Cloud Foundry 路由服务的自动配置和 DSL 支持 #294
  • 改进某些情况下的错误消息和错误日志记录。

Spring Cloud Sleuth

Spring Cloud Config

Spring Cloud Netflix

Spring Cloud Commons

Spring Cloud Contract

修复了基于 YAML 的契约解析顺序。现在您的自定义解析器将首先读取。

Spring Cloud Stream

Spring Cloud Vault

Spring Cloud Openfeign

Spring Cloud Consul

  • 添加了对配置 Consul Client TLSConfig 的支持 #360

以下模块已作为 Finchley.SR1 的一部分更新

模块 版本
Spring Cloud Consul 2.0.1.RELEASE
Spring Cloud Gateway 2.0.1.RELEASE
Spring Cloud Sleuth 2.0.1.RELEASE
Spring Cloud Config 2.0.1.RELEASE
Spring Cloud Netflix 2.0.1.RELEASE
Spring Cloud Commons 2.0.1.RELEASE
Spring Cloud Contract 2.0.1.RELEASE
Spring Cloud Stream Elmhurst.SR1
Spring Cloud Vault 2.0.1.RELEASE
Spring Cloud Openfeign 2.0.1.RELEASE

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

要使用带有 BOM(仅依赖项管理)的 Maven 开始使用


<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-dependencies</artifactId>
            <version>Finchley.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.5.RELEASE"
    }
}



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

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

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

获取 Spring 电子邮件简报

通过 Spring 电子邮件简报保持联系

订阅

领先一步

VMware 提供培训和认证,以加快您的进度。

了解更多

获取支持

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

了解更多

即将举行的活动

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

查看全部