领先一步
VMware 提供培训和认证,助您加速进步。
了解更多我谨代表社区宣布,Spring Cloud 2020.0.5 Release Train 的通用可用版本 (RELEASE) 今天发布。您可以在 Maven Central 找到此版本。您可以查看 2020.0.5 发布说明以获取更多信息。
1.10.17 issuePageJacksonModule 中增加了对 size = 0 的支持 PR以下模块已在 2020.0.5 中更新
| 模块 | 版本 | 问题 |
|---|---|---|
| Spring Cloud Netflix | 3.0.5 | (issues) |
| Spring Cloud Config | 3.0.6 | (issues) |
| Spring Cloud Sleuth | 3.0.5 | (issues) |
| Spring Cloud Gateway | 3.0.6 | (issues) |
| Spring Cloud Cloudfoundry | 3.0.3 | |
| Spring Cloud Contract | 3.0.5 | (issues) |
| Spring Cloud Kubernetes | 2.0.5 | (issues) |
| Spring Cloud Zookeeper | 3.0.5 | (issues) |
| Spring Cloud CLI | 3.0.4 | |
| Spring Cloud Task | 2.3.5 | (issues) |
| Spring Cloud Starter Build | 2020.0.5 | |
| Spring Cloud Openfeign | 3.0.6 | (issues) |
| Spring Cloud Vault | 3.0.5 | (issues) |
| Spring Cloud Commons | 3.0.5 | (issues) |
一如既往,我们欢迎大家在 GitHub、Gitter、Stack Overflow 或 Twitter 上提供反馈。
Maven 起步使用 BOM(仅依赖管理)
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>2020.0.5</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.11.RELEASE'
}
}
apply plugin: 'io.spring.dependency-management'
dependencyManagement {
imports {
mavenBom 'org.springframework.cloud:spring-cloud-dependencies:2020.0.5'
}
}
dependencies {
implementation 'org.springframework.cloud:spring-cloud-starter-config'
implementation 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-client'
...
}