領先一步
VMware 提供訓練和認證,以加速您的進度。
了解更多我謹代表社群宣布,Spring Cloud 2022.0.0 Release Train 的 Milestone 4 (M4) 版本已於今日推出。此版本可在 Spring Milestone 儲存庫中找到。您可以查看 2022.0 發布說明以取得更多資訊。
請參閱 專案頁面 以取得此版本中包含的所有問題和提取請求。
Spring Cloud 2022.0.0-M4 與 Spring Boot 3.0.0-M4 相容。
以下模組已更新,作為 2022.0.0-M4 的一部分
模組 | 版本 | 問題 |
---|---|---|
Spring Cloud Stream | 4.0.0-M4 | |
Spring Cloud Config | 4.0.0-M4 | (問題) |
Spring Cloud Build | 4.0.0-M4 | |
Spring Cloud Consul | 4.0.0-M4 | (問題) |
Spring Cloud Kubernetes | 3.0.0-M4 | (問題) |
Spring Cloud Gateway | 4.0.0-M4 | |
Spring Cloud Starter Build | 2022.0.0-M4 | |
Spring Cloud Circuitbreaker | 3.0.0-M4 | |
Spring Cloud Contract | 4.0.0-M4 | (問題) |
Spring Cloud Bus | 4.0.0-M4 | |
Spring Cloud Function | 4.0.0-M4 | |
Spring Cloud Task | 3.0.0-M4 | (問題) |
Spring Cloud Zookeeper | 4.0.0-M4 | |
Spring Cloud Openfeign | 4.0.0-M4 | |
Spring Cloud Vault | 4.0.0-M4 | (問題) |
Spring Cloud Commons | 4.0.0-M4 | (問題) |
一如既往,我們歡迎在 GitHub、Gitter、Stack Overflow 或 Twitter 上提供意見回饋。
若要開始使用 Maven 和 BOM (僅限相依性管理)
<repositories>
<repository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>https://repo.spring.io/milestone</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>2022.0.0-M4</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"
}
}
repositories {
maven {
url 'https://repo.spring.io/milestone'
}
}
apply plugin: "io.spring.dependency-management"
dependencyManagement {
imports {
mavenBom 'org.springframework.cloud:spring-cloud-dependencies:2022.0.0-M4'
}
}
dependencies {
compile 'org.springframework.cloud:spring-cloud-starter-config'
compile 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-client'
...
}