領先一步
VMware 提供培訓和認證,助您加速進步。
瞭解更多我很高興代表社群宣佈,Spring Cloud 2021.0.7 釋出列車(又名 Jubilee)的通用可用性 (RELEASE) 版本已於今日釋出。此版本可在 Maven Central 中找到。您可以檢視 2021.0.7 釋出說明以獲取更多資訊。
有關此版本中包含的所有問題和拉取請求,請參見專案頁面。
此版本主要是一個錯誤修復版本。
以下模組已作為 2021.0.7 的一部分進行了更新
| 模組 | 版本 |
|---|---|
| Spring Cloud Netflix | 3.1.6 |
| Spring Cloud Config | 3.1.7 |
| Spring Cloud Build | 3.1.7 |
| Spring Cloud Sleuth | 3.1.8 |
| Spring Cloud Gateway | 3.1.7 |
| Spring Cloud Starter Build | 2021.0.7 |
| Spring Cloud Consul | 3.1.3 |
| Spring Cloud Contract | 3.1.7 |
| Spring Cloud Vault | 3.1.3 |
| Spring Cloud Kubernetes | 2.1.7 |
| Spring Cloud Zookeeper | 3.1.3 |
| Spring Cloud Task | 2.4.6 |
| Spring Cloud OpenFeign | 3.1.7 |
| Spring Cloud CircuitBreaker | 2.1.7 |
| Spring Cloud Stream | 3.2.8 |
| Spring Cloud Commons | 3.1.6 |
| Spring Cloud Function | 3.2.10 |
| Spring Cloud CLI | 3.1.1 |
一如既往,我們歡迎您在 GitHub、Gitter、Stack Overflow 和 Twitter 上提供反饋。
Maven 起步使用 BOM(僅依賴管理)
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>2021.0.7</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 'java'
id 'org.springframework.boot' version '2.7.11'
id 'io.spring.dependency-management' version '1.0.15.RELEASE'
}
group = 'com.example'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '8'
repositories {
mavenCentral()
}
ext {
set('springCloudVersion', "2021.0.7")
}
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}"
}
}