领先一步
VMware 提供培训和认证,助您加速发展。
了解更多我代表社区很高兴地宣布,Spring Cloud 2020.0 发布列车(代号 Ilford
)的里程碑 3(M3)版本今天发布。该版本可以在 Spring Milestone 存储库中找到。您可以查看 2020.0 的 发布说明以获取更多信息。
此版本需要 Spring Boot 2.4.0-M1。
在 Github 项目中查看所有包含的问题和拉取请求。
在 Consul Bus 中添加了对非字符串有效负载类型的支持。
JDBC 环境存储库现在可以使用属性禁用。
除了少量增强和错误修复之外,此版本还包括对 RSocket 集成的初始支持。稍后将发布单独的博文。
Spring Cloud Loadbalancer 生命周期已 完成。这允许用户以类型安全的方式轻松响应负载均衡器生命周期事件。
添加了对 OpenFeign 集合格式的支持 问题
与 Spring Cloud Function 的更紧密集成,TestBinder 中的一些新功能允许您发送到和接收来自命名目标,动态目标的显著性能改进,以及框架中的众多增强和错误修复。
Spring Cloud Task 已将 JdbcCursorItemReader
和 JdbcItemWriter
添加到单步批处理作业功能的启动器中。此功能允许用户仅通过属性配置单步 Spring Batch 作业。有关如何使用此功能的示例,请参见 此处。
以下模块已在 2020.0.0-M3 版本中更新
| 模块 | 版本 | 问题 |--- |--- |--- |--- | Spring Cloud Bus | 3.0.0-M3 |
| Spring Cloud Circuitbreaker | 2.0.0-M3 |
| Spring Cloud Cloudfoundry | 3.0.0-M3 |
| Spring Cloud Commons | 3.0.0-M3 |
| Spring Cloud Config | 3.0.0-M3 | (问题) | Spring Cloud Consul | 3.0.0-M3 |
| Spring Cloud Contract | 3.0.0-M3 | (问题) | Spring Cloud Function | 3.1.0-M2 | | Spring Cloud Gateway | 3.0.0-M3 |
| Spring Cloud Kubernetes | 2.0.0-M3 |
| Spring Cloud Netflix | 3.0.0-M3 |
| Spring Cloud Openfeign | 3.0.0-M3 |
| Spring Cloud Security | 3.0.0-M3 |
| Spring Cloud Sleuth | 3.0.0-M3 |
| Spring Cloud Stream | 3.1.0-M2 | | Spring Cloud Task | 2.3.0-M2 | | Spring Cloud Vault | 3.0.0-M3 |
| Spring Cloud Zookeeper | 3.0.0-M3 |
一如既往,我们欢迎您在 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>2020.0.0-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.9.RELEASE"
}
}
repositories {
maven {
url 'https://repo.spring.io/milestone'
}
}
apply plugin: "io.spring.dependency-management"
dependencyManagement {
imports {
mavenBom 'org.springframework.cloud:spring-cloud-dependencies:2020.0.0-M3'
}
}
dependencies {
compile 'org.springframework.cloud:spring-cloud-starter-config'
compile 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-client'
//...
}