领先一步
VMware 提供培训和认证,以加速您的进步。
了解更多我代表社区很高兴地宣布,Spring Cloud Hoxton 发布列车的 Release Candidate 2 (RC2) 今天已发布。该版本可以在 Spring Milestone 存储库中找到。您可以查看 Hoxton 的 发行说明以获取更多信息。
Spring Cloud Hoxton.RC2 基于 Spring Boot 2.2.1.RELEASE 构建。
EmitterProcessor
,它有效地将 Publisher
转换为一个支持背压的 Publisher
DefaultKafkaHeaderMapper
相同的自定义 header 映射器。这是为了解决 Spring Cloud Stream 3.0.x 和 2.x 应用程序之间的一些互操作性问题以下模块已作为 Hoxton.RC2 的一部分进行了更新
| 模块 | 版本 | 问题 |--- |--- |--- |--- | Spring Cloud Aws | 2.2.0.RC2 |
| Spring Cloud Vault | 2.2.0.RC2 |
| Spring Cloud 断路器 | 1.0.0.RC2 |
| Spring Cloud Cli | 2.2.0.RC2 |
| Spring Cloud 网关 | 2.2.0.RC2 | (问题) | Spring Cloud Zookeeper | 2.2.0.RC2 |
| Spring Cloud 启动器 | Hoxton.RC2 |
| Spring Cloud Build | 2.2.0.RC2 | (问题) | Spring Cloud 配置 | 2.2.0.RC2 | (问题) | Spring Cloud 依赖项父级 | 2.2.0.RC2 |
| Spring Cloud 启动器父级 | Hoxton.RC2 |
| Spring Cloud Sleuth | 2.2.0.RC2 | (问题) | Spring Cloud Contract | 2.2.0.RC2 | (问题) | Spring Cloud Gcp | 1.2.0.RC2 |
| Spring Cloud Bus | 2.2.0.RC2 |
| Spring Cloud Consul | 2.2.0.RC2 |
| Spring Cloud Stream | Horsham.RC2 |
| Spring Cloud Kubernetes | 1.1.0.RC2 |
| Spring Cloud OpenFeign | 2.2.0.RC2 | (问题) | Spring Cloud Commons | 2.2.0.RC2 | (问题) | Spring Cloud 依赖项 | Hoxton.RC2 |
| Spring Cloud Task | 2.2.0.RC1 | (问题) | Spring Cloud Function | 3.0.0.RC2 | (问题) | Spring Cloud | Hoxton.RC2 |
| Spring Cloud Netflix | 2.2.0.RC2 |
| Spring Cloud Security | 2.2.0.RC2 |
| Spring Cloud 发布 | Hoxton.RC2 |
| Spring Cloud Cloudfoundry | 2.2.0.RC2 |
与往常一样,我们欢迎您在 GitHub、Gitter、Stack Overflow 或 Twitter 上提供反馈。
要使用 Maven 和 BOM(仅依赖项管理)开始使用
<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.RC2</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 'https://repo.spring.io/milestone'
}
}
apply plugin: "io.spring.dependency-management"
dependencyManagement {
imports {
mavenBom 'org.springframework.cloud:spring-cloud-dependencies:Hoxton.RC2'
}
}
dependencies {
compile 'org.springframework.cloud:spring-cloud-starter-config'
compile 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-client'
...
}