遙遙領先
VMware 提供培訓和認證,以加速您的進步。
瞭解更多我謹代表社群宣佈 Spring Cloud 2021.0.4 Release Train 的正式版本 (RELEASE) 今天釋出。 該版本可以在 Maven Central 中找到。 您可以檢視 2021.0.4 發行說明以獲取更多資訊。
請參閱專案頁面,瞭解此版本中包含的所有問題和拉取請求。
以下模組已作為 2021.0.4 的一部分更新
模組 | 版本 | 問題 |
---|---|---|
Spring Cloud Netflix | 3.1.4 | (問題) |
Spring Cloud Config | 3.1.4 | (問題) |
Spring Cloud Build | 3.1.4 | |
Spring Cloud Sleuth | 3.1.4 | (問題) |
Spring Cloud Gateway | 3.1.4 | (問題) |
Spring Cloud Starter Build | 2021.0.4 | |
Spring Cloud Consul | 3.1.2 | (問題) |
Spring Cloud Contract | 3.1.4 | (問題) |
Spring Cloud Kubernetes | 2.1.4 | (問題) |
Spring Cloud Zookeeper | 3.1.3 | (問題) |
Spring Cloud Task | 2.4.4 | |
Spring Cloud Openfeign | 3.1.4 | (問題) |
Spring Cloud Circuitbreaker | 2.1.4 | |
Spring Cloud Stream | 3.2.5 | |
Spring Cloud Commons | 3.1.4 | (問題) |
Spring Cloud Function | 3.2.7 |
與往常一樣,我們歡迎您在 GitHub、Gitter、Stack Overflow 或 Twitter 上提供反饋。
開始使用帶有 BOM 的 Maven(僅依賴項管理)
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>2021.0.4</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.2.RELEASE"
}
}
apply plugin: "io.spring.dependency-management"
dependencyManagement {
imports {
mavenBom 'org.springframework.cloud:spring-cloud-dependencies:2021.0.4'
}
}
dependencies {
compile 'org.springframework.cloud:spring-cloud-starter-config'
compile 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-client'
...
}