领先一步
VMware提供培训和认证,以加速您的进步。
了解更多我代表社区,高兴地宣布Spring Cloud 2020.0发行列车(2020.0.3)的Service Release 3今天已发布。该版本可以在Maven Central找到。您可以查看2020.0的发行说明以了解更多信息。
此版本中最大的变化是支持Spring Boot 2.5。除此之外,此版本主要用于修复错误和升级依赖项。
在Github项目中查看所有包含的问题和拉取请求。
以下模块已作为2020.0.3的一部分更新
模块 | 版本 | 问题 |
---|---|---|
Spring Cloud Bus | 3.0.3 | |
Spring Cloud Circuitbreaker | 2.0.2 | |
Spring Cloud Cli | 3.0.3 | |
Spring Cloud Cloudfoundry | 3.0.2 | |
Spring Cloud Commons | 3.0.3 | 问题 |
Spring Cloud Config | 3.0.4 | 问题 |
Spring Cloud Consul | 3.0.3 | 问题 |
Spring Cloud Contract | 3.0.3 | 问题 |
Spring Cloud Gateway | 3.0.3 | 问题 |
Spring Cloud Kubernetes | 2.0.3 | 问题 |
Spring Cloud Netflix | 3.0.3 | 问题 |
Spring Cloud Openfeign | 3.0.3 | 问题 |
Spring Cloud Sleuth | 3.0.3 | 问题 |
Spring Cloud Task | 2.3.2 | |
Spring Cloud Vault | 3.0.3 | |
Spring Cloud Zookeeper | 3.0.3 | 问题 |
与以往一样,我们欢迎您在GitHub、Gitter、Stack Overflow或Twitter上提供反馈。
使用Maven和BOM(仅依赖项管理)开始
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>2020.0.3</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.3'
}
}
dependencies {
compile 'org.springframework.cloud:spring-cloud-starter-config'
compile 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-client'
//...
}