Spring Cloud Finchley.SR3 现已推出

版本 | Ryan Baxter | 2019 年 2 月 26 日 | ...

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

Finchley 发布列车的显著变化

Spring Cloud Config

  • Spring Cloud Config 服务器现在在检索数据之前会尊重请求中的 if-modified-since 标头,并在响应中返回 last-modified 标头。

获取数据

Spring Cloud Stream

*Elmhurst.SR2 版本

Spring Cloud Sleuth

Spring Cloud Zookeeper

Spring Cloud Aws

Spring Cloud Task

Spring Cloud Commons

Spring Cloud OpenFeign

Spring Cloud Vault

  • 依赖项升级
  • 文档改进
  • 问题

Spring Cloud Bus

Spring Cloud Contract

Spring Cloud Consul

  • spring.cloud.discovery.enabled=false 现在与 spring.cloud.consul.discovery.enabled=false 的行为相同。
  • 问题

Spring Cloud Gateway

  • 当 Ribbon 不在类路径中时,改进了错误处理。
  • HTTP 和 Websocket 请求路由的性能改进。
  • 使用修改请求体过滤器时的性能改进。
  • 问题

Spring Cloud Netflix

  • 现在可以使用 HystrixPlugins#getConcurrencyStrategy 设置 HystrixConcurrencyStrategy
  • spring.cloud.discovery.enabled=false 现在与 eureka.client.enabled=false 的行为相同。
  • 问题

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

| 模块 | 版本 | 问题 |--- |--- |--- |--- | Spring Cloud Config | 2.0.3.RELEASE | (问题) | Spring Cloud Function | 1.0.0.RELEASE | (问题) | Spring Cloud Stream | Elmhurst.SR2 |   | Spring Cloud Sleuth | 2.0.3.RELEASE | (问题) | Spring Cloud Cloudfoundry | 2.0.1.RELEASE | (问题) | Spring Cloud Zookeeper | 2.0.1.RELEASE | (问题) | Spring Cloud Aws | 2.0.2.RELEASE | (问题) | Spring Cloud Task | 2.0.1.RELEASE |   | Spring Cloud Commons | 2.0.3.RELEASE | (问题) | Spring Cloud Openfeign | 2.0.3.RELEASE | (问题) | Spring Cloud Vault | 2.0.3.RELEASE | (问题) | Spring Cloud Security | 2.0.1.RELEASE |   | Spring Cloud Bus | 2.0.1.RELEASE | (问题) | Spring Cloud Contract | 2.0.3.RELEASE | (问题) | Spring Cloud Consul | 2.0.2.RELEASE | (问题) | Spring Cloud Gateway | 2.0.3.RELEASE | (问题) | Spring Cloud Dependencies | Finchley.SR3 |   | Spring Cloud Netflix | 2.0.3.RELEASE | (问题)

一如既往,我们欢迎您在 GitHubGitterStack OverflowTwitter 上提供反馈。

使用 Maven 和 BOM(仅依赖管理)入门


<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-dependencies</artifactId>
            <version>Finchley.SR3</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:Finchley.SR3'
    }
}

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 社区中所有即将举行的活动。

查看全部