Spring Cloud Hoxton.M3 现已发布

发布 | Spencer Gibb | 2019 年 10 月 5 日 | ...

我代表社区,很高兴地宣布 Spring Cloud Hoxton 发布列车第 3 个里程碑版本 (M3) 今天发布。该版本可以在 Spring Milestone 存储库中找到。您可以查看 Hoxton 的 发行说明以获取更多信息

Hoxton 发布列车中的显著变化

此里程碑版本与 Spring Boot 2.2.0.RC1 兼容。

Spring Cloud 断路器

我们欢迎 Spring Cloud 断路器作为 Spring Cloud 发布列车下的一个新项目。此项目提供了一个抽象 API,用于向您的应用程序添加断路器。在撰写本文时,有四个受支持的实现

有关更多信息,请参阅 公告博客文章

Spring Cloud Config

支持 AWS S3 的环境存储库。

Spring Cloud Commons

进行了许多改进以支持 Spring 的响应式堆栈。创建了一个 ReactiveDiscoveryClient。还对 Spring Cloud Loadbalancer 进行了更新以使用此新的 ReactiveDiscoveryClient。添加了一个新的 spring-cloud-starter-loadbalancer

Spring Cloud Cloudfoundry

添加了对新的 ReactiveDiscoveryClient 的支持。

Spring Cloud Zookeeper

添加了对新的 ReactiveDiscoveryClient 的支持。

Spring Cloud Gateway

添加了对使用新的 ReactiveLoadBalancer 的支持。RSocket 支持已更新为实现 RSocket 路由和转发规范扩展的功能。

在 Hoxton 发布之前,Spring Cloud Gateway 中的 RSocket 支持将是技术预览,直到 RSocket 路由和转发规范扩展最终确定并且 RSocket Java 实现相应更新。

Spring Cloud Netflix

添加了对新的 ReactiveDiscoveryClient 和新的 Spring Cloud 断路器 API 实现(用于 Hystrix)的支持。

Spring Cloud Kubernetes

添加了对新的 ReactiveDiscoveryClient 的支持。

Spring Cloud Contract

添加了对 Spring Kafka 的支持。

Spring Cloud OpenFeign

OpenFeign 已更新至 10.4.0。

Spring Cloud Sleuth

添加了对 AWS SQS、Spring Kafka 和 Quartz 的支持。

Spring Cloud Consul

添加了对新的 ReactiveDiscoveryClient 和 Consul 的一致性模式的支持。

Spring Cloud Vault

添加了对 PCF 身份验证和 X-Vault-Namespace 的支持。


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

| 模块 | 版本 | 问题 |--- |--- |--- |--- | Spring Cloud Config | 2.2.0.M3 | (问题) | Spring Cloud Cloudfoundry | 2.2.0.M3 | (问题) | Spring Cloud Cli | 2.2.0.M2 |
| Spring Cloud Zookeeper | 2.2.0.M3 |
| Spring Cloud Aws | 2.2.0.M3 | (问题) | Spring Cloud Gateway | 2.2.0.M3 | (问题) | Spring Cloud Netflix | 2.2.0.M3 | (问题) | Spring Cloud Kubernetes | 1.1.0.M3 | (问题) | Spring Cloud Task | 2.2.0.M2 | (问题) | Spring Cloud Commons | 2.2.0.M3 | (问题) | Spring Cloud Contract | 2.2.0.M3 | (问题) | Spring Cloud Openfeign | 2.2.0.M3 | (问题) | Spring Cloud Security | 2.2.0.M3 | (问题) | Spring Cloud Bus | 2.2.0.M3 | (问题) | Spring Cloud Stream | Horsham.M4 | (问题) | Spring Cloud Sleuth | 2.2.0.M3 | (问题) | Spring Cloud Circuitbreaker | 1.0.0.M1 |
| Spring Cloud Consul | 2.2.0.M3 | (问题) | Spring Cloud Vault | 2.2.0.M3 |
| Spring Cloud Gcp | 1.2.0.M3 |
| Spring Cloud Function | 3.0.0.M3 | (问题)

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

以下清单显示了如何使用 BOM(仅依赖项管理)开始使用 Maven

    <repositories>
        <repository>
            <id>spring-milestones</id>
            <name>Spring Milestones</name>
            <url>https://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>Hoxton.M3</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.8.RELEASE"
}
}

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

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

dependencyManagement {
imports {
mavenBom 'org.springframework.cloud:spring-cloud-dependencies:Hoxton.M3'
}
}

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

查看全部