领先一步
VMware 提供培训和认证,以加速您的进步。
了解更多我代表社区,很高兴地宣布 Spring Cloud Hoxton 发布列车第 3 个里程碑版本 (M3) 今天发布。该版本可以在 Spring Milestone 存储库中找到。您可以查看 Hoxton 的 发行说明以获取更多信息。
此里程碑版本与 Spring Boot 2.2.0.RC1 兼容。
我们欢迎 Spring Cloud 断路器作为 Spring Cloud 发布列车下的一个新项目。此项目提供了一个抽象 API,用于向您的应用程序添加断路器。在撰写本文时,有四个受支持的实现
有关更多信息,请参阅 公告博客文章。
支持 AWS S3 的环境存储库。
进行了许多改进以支持 Spring 的响应式堆栈。创建了一个 ReactiveDiscoveryClient
。还对 Spring Cloud Loadbalancer 进行了更新以使用此新的 ReactiveDiscoveryClient
。添加了一个新的 spring-cloud-starter-loadbalancer
。
添加了对新的 ReactiveDiscoveryClient
的支持。
添加了对新的 ReactiveDiscoveryClient
的支持。
添加了对使用新的 ReactiveLoadBalancer
的支持。RSocket 支持已更新为实现 RSocket 路由和转发规范扩展的功能。
在 Hoxton 发布之前,Spring Cloud Gateway 中的 RSocket 支持将是技术预览,直到 RSocket 路由和转发规范扩展最终确定并且 RSocket Java 实现相应更新。
添加了对新的 ReactiveDiscoveryClient
和新的 Spring Cloud 断路器 API 实现(用于 Hystrix)的支持。
添加了对新的 ReactiveDiscoveryClient
的支持。
添加了对 Spring Kafka 的支持。
OpenFeign 已更新至 10.4.0。
添加了对 AWS SQS、Spring Kafka 和 Quartz 的支持。
添加了对新的 ReactiveDiscoveryClient
和 Consul 的一致性模式的支持。
添加了对 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 | (问题)
与往常一样,我们欢迎您在 GitHub、Gitter、Stack Overflow 和 Twitter 上提供反馈。
以下清单显示了如何使用 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'
...
}