领先一步
VMware 提供培训和认证,以加速您的进步。
了解更多我谨代表社区宣布,Spring Cloud 2020.0.5 发布列车今天正式发布(通用版本)。该版本可以在 Maven Central 中找到。您可以查看 2020.0.5 的 发行说明以获取更多信息。
1.10.17
问题PageJacksonModule
中添加了对 size = 0 的支持 PR以下模块已作为 2020.0.5 的一部分更新
模块 | 版本 | 问题 |
---|---|---|
Spring Cloud Netflix | 3.0.5 | (问题) |
Spring Cloud Config | 3.0.6 | (问题) |
Spring Cloud Sleuth | 3.0.5 | (问题) |
Spring Cloud Gateway | 3.0.6 | (问题) |
Spring Cloud Cloudfoundry | 3.0.3 | |
Spring Cloud Contract | 3.0.5 | (问题) |
Spring Cloud Kubernetes | 2.0.5 | (问题) |
Spring Cloud Zookeeper | 3.0.5 | (问题) |
Spring Cloud Cli | 3.0.4 | |
Spring Cloud Task | 2.3.5 | (问题) |
Spring Cloud Starter Build | 2020.0.5 | |
Spring Cloud Openfeign | 3.0.6 | (问题) |
Spring Cloud Vault | 3.0.5 | (问题) |
Spring Cloud Commons | 3.0.5 | (问题) |
与往常一样,我们欢迎您在 GitHub、Gitter、Stack Overflow 或 Twitter 上提供反馈。
要使用带有 BOM(仅依赖管理)的 Maven 开始
<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'
...
}