领先一步
VMware 提供培训和认证,以加快您的进步。
了解更多我代表社区,很高兴地宣布 Spring Cloud 2020.0.6 发布列车现已推出。此版本可在 Maven Central 中找到。您可以查看 2020.0.6 的 发行说明以获取更多信息。请考虑升级到最新的 2021.0.x 发布列车,因为 2020.0.x 发布列车已达到 OSS 支持的结束。
此版本主要是一个错误修复和依赖项升级版本,包括来自 2021.0.x
版本的各种问题的回传。还回传了一些增强功能。
有关此版本中包含的所有问题,请参阅 项目页面。
2021.0.x
回传的错误修复2021.0.x
回传的错误修复2021.0.x
回传的错误修复以下模块已作为 2020.0.6 的一部分更新
模块 | 版本 | 问题 |
---|---|---|
Spring Cloud Stream | 3.1.6 | |
Spring Cloud Config | 3.0.7 | |
Spring Cloud Build | 3.0.5 | |
Spring Cloud Sleuth | 3.0.6 | (问题) |
Spring Cloud Contract | 3.0.6 | (问题) |
Spring Cloud Starter Build | 2020.0.6 | |
Spring Cloud Gateway | 3.0.8 | |
Spring Cloud Consul | 3.0.7 | |
Spring Cloud Netflix | 3.0.6 | |
Spring Cloud Cloudfoundry | 3.0.3 | |
Spring Cloud Vault | 3.0.5 | |
Spring Cloud Kubernetes | 2.0.6 | |
Spring Cloud Bus | 3.0.3 | |
Spring Cloud Zookeeper | 3.0.5 | |
Spring Cloud Task | 2.3.5 | |
Spring Cloud Cli | 3.0.4 | |
Spring Cloud Commons | 3.0.6 | |
Spring Cloud Openfeign | 3.0.7 | |
Spring Cloud Function | 3.1.6 | |
Spring Cloud Circuitbreaker | 2.0.3 |
与往常一样,我们欢迎您在 GitHub、Gitter、Stack Overflow 或 Twitter 上提供反馈。
要使用带有 BOM 的 Maven(仅依赖项管理)开始
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>2020.0.6</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
plugins {
id 'org.springframework.boot' version '2.4.13'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
}
group = 'com.example'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '8'
repositories {
mavenCentral()
}
ext {
set('springCloudVersion', "2020.0.6")
}
dependencies {
implementation 'org.springframework.cloud:spring-cloud-starter-config'
implementation 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-client'
}
dependencyManagement {
imports {
mavenBom "org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}"
}
}