领先一步
VMware 提供培训和认证,以加快您的进度。
了解更多我代表社区,高兴地宣布Spring Cloud 2020.0发布列车(2020.0.2)的Service Release 2今天已发布。可以在Maven Central找到此版本。您可以查看2020.0的发行说明以了解更多信息。
此版本主要用于修复 bug 和升级依赖项。
请参阅此页面以了解已知问题列表。
请参阅wiki以了解此发行列车中所有重大更改的列表。
在Github 项目中查看所有包含的问题和拉取请求。
ConfigData
时添加了 TLS 支持(#1689)Message
的能力,以及通过用户提供的回调实现附加路由机制。SleuthFeignBuilder
现在允许提供自定义delegate
(#1865)以下模块已作为 2020.0.2 的一部分进行了更新
模块 | 版本 | 问题 |
---|---|---|
Spring Cloud Bus | 3.0.2 | |
Spring Cloud Circuitbreaker | 2.0.1 | |
Spring Cloud Cli | 3.0.2 | |
Spring Cloud Cloudfoundry | 3.0.1 | |
Spring Cloud Commons | 3.0.2 | |
Spring Cloud Config | 3.0.3 | |
Spring Cloud Consul | 3.0.2 | |
Spring Cloud Contract | 3.0.2 | |
Spring Cloud Gateway | 3.0.2 | |
Spring Cloud Kubernetes | 2.0.2 | |
Spring Cloud Netflix | 3.0.2 | |
Spring Cloud Openfeign | 3.0.2 | |
Spring Cloud Sleuth | 3.0.2 | |
Spring Cloud Task | 2.3.1 | |
Spring Cloud Vault | 3.0.2 | |
Spring Cloud Zookeeper | 3.0.2 |
与往常一样,我们欢迎您在GitHub、Gitter、Stack Overflow或Twitter上提供反馈。
要开始使用带有 BOM 的 Maven(仅依赖项管理)
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>2020.0.2</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.2'
}
}
dependencies {
compile 'org.springframework.cloud:spring-cloud-starter-config'
compile 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-client'
//...
}