领先一步
VMware 提供培训和认证,以加速您的进步。
了解更多我代表社区很高兴地宣布,Spring Cloud 2023.0.3 发布列车的通用可用性(发布)版本现已推出。此版本可在 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 上提供反馈。
要使用 Maven 和 BOM(仅依赖项管理)开始使用
<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'
...
}