搶先一步
VMware 提供培訓和認證,以加速您的進步。
瞭解更多我很高興代表社群宣佈 Spring Cloud 2023.0.3 釋出序列的正式版本 (RELEASE) 今天已釋出。該版本可以在 Maven Central 中找到。
此版本基於 Spring Boot 3.2.7,主要包含錯誤修復和依賴項升級。
有關此版本中所做的所有更改,請參見 GitHub 專案。
以下模組已作為 2023.0.3 的一部分進行了更新
模組 | 版本 | 問題 |
---|---|---|
Spring Cloud Vault | 4.1.3 | |
Spring Cloud Bus | 4.1.2 | |
Spring Cloud Zookeeper | 4.1.2 | |
Spring Cloud Kubernetes | 3.1.3 | (問題) |
Spring Cloud Task | 3.1.2 | (問題) |
Spring Cloud Function | 4.1.3 | (問題) |
Spring Cloud Commons | 4.1.4 | (問題) |
Spring Cloud OpenFeign | 4.1.3 | (問題) |
Spring Cloud CircuitBreaker | 3.1.2 | (問題) |
Spring Cloud Starter Build | 2023.0.3 | |
Spring Cloud Stream | 4.1.3 | |
Spring Cloud Gateway | 4.1.5 | (問題) |
Spring Cloud Consul | 4.1.2 | |
Spring Cloud Contract | 4.1.4 | (問題) |
Spring Cloud Config | 4.1.3 | (問題) |
Spring Cloud Build | 4.1.3 | |
Spring Cloud Netflix | 4.1.3 | (問題) |
與往常一樣,我們歡迎在 GitHub、Stack Overflow 或 Twitter 上提供反饋。
透過 BOM(僅依賴項管理)開始使用 Maven
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>2023.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.1.5"
}
}
apply plugin: "io.spring.dependency-management"
dependencyManagement {
imports {
mavenBom 'org.springframework.cloud:spring-cloud-dependencies:2023.0.3'
}
}
dependencies {
compile 'org.springframework.cloud:spring-cloud-starter-config'
compile 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-client'
...
}