保持領先
VMware 提供培訓和認證,助您加速前進。
瞭解更多我代表社群,很高興宣佈 Spring Cloud 2023.0.0 Release Train 的通用版本(RELEASE)今天已釋出。該版本可在 Maven Central 中找到。您可以檢視 2023.0 的釋出說明以獲取更多資訊。
此版本基於 Spring Boot 3.2.0。
使用者現在能夠將 REST 應用程式部署為AWS Lambda 或 Azure Functions
透過 spring-cloud-function-web 部署為 REST 端點的函式的 CRUD 對映
RestClient
的負載均衡器支援(1293以下模組作為 2023.0.0 的一部分進行了更新
模組 | 版本 | 問題 |
---|---|---|
Spring Cloud Function | 4.1.0 | (問題) |
Spring Cloud Vault | 4.1.0 | (問題) |
Spring Cloud Zookeeper | 4.1.0 | (問題) |
Spring Cloud Circuitbreaker | 3.1.0 | (問題) |
Spring Cloud Task | 3.1.0 | (問題) |
Spring Cloud Kubernetes | 3.1.0 | (問題) |
Spring Cloud Starter Build | 2023.0.0 | (問題) |
Spring Cloud Openfeign | 4.1.0 | (問題) |
Spring Cloud Bus | 4.1.0 | (問題) |
Spring Cloud Stream | 4.1.0 | (問題) |
Spring Cloud Commons | 4.1.0 | (問題) |
Spring Cloud Contract | 4.1.0 | (問題) |
Spring Cloud Netflix | 4.1.0 | (問題) |
Spring Cloud Consul | 4.1.0 | (問題) |
Spring Cloud Config | 4.1.0 | (問題) |
Spring Cloud Build | 4.1.0 | (問題) |
Spring Cloud Gateway | 4.1.0 | (問題) |
一如既往,我們歡迎您在 GitHub、Gitter、Stack Overflow 或 Twitter 上提供反饋。
使用 BOM (僅依賴管理) 開始使用 Maven
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>2023.0.0</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 '3.2.0'
id 'io.spring.dependency-management' version '1.1.4'
}
repositories {
mavenCentral()
}
ext {
set('springCloudVersion', "2023.0.0")
}
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}"
}
}