领先一步
VMware 提供培训和认证,助您加速进步。
了解更多我很高兴代表社区宣布,Spring Cloud 2025.0.0 发布列车的里程碑 3 (M3) 今天已可用。该版本可在 Spring Milestone 仓库中找到。您可以查看 2025.0.0 的发布说明以获取更多信息。
此版本中所有更改的完整列表可在 GitHub 上的此项目中找到。
此版本基于 Spring Boot 3.5.0-M3。
BindingsLifecycleController 动态定义绑定的功能BindingsLifecycleController 修改现有绑定的功能MessageConverterHelper 的行为,以确保用户可以在单个消息转换器上强制失败以下模块已作为 2025.0.0-M3 的一部分进行更新
| 模块 | 版本 | 问题 |
|---|---|---|
| Spring Cloud Stream | 4.3.0-M3 | (问题) |
| Spring Cloud Openfeign | 4.3.0-M3 | (问题) |
| Spring Cloud Netflix | 4.3.0-M3 | (问题) |
| Spring Cloud Commons | 4.3.0-M3 | (问题) |
| Spring Cloud Circuitbreaker | 3.3.0-M3 | (问题) |
| Spring Cloud Contract | 4.3.0-M3 | (问题) |
| Spring Cloud Consul | 4.3.0-M3 | (问题) |
| Spring Cloud Config | 4.3.0-M3 | (问题) |
| Spring Cloud Build | 4.3.0-M3 | (问题) |
| Spring Cloud Gateway | 4.3.0-M3 | (问题) |
| Spring Cloud Function | 4.3.0-M3 | (问题) |
| Spring Cloud Starter Build | 2025.0.0-M3 | (问题) |
| Spring Cloud Vault | 4.3.0-M3 | (问题) |
| Spring Cloud Task | 3.3.0-M3 | (问题) |
| Spring Cloud Kubernetes | 3.3.0-M3 | (问题) |
| Spring Cloud Zookeeper | 4.3.0-M3 | (问题) |
| Spring Cloud Bus | 4.3.0-M3 | (问题) |
一如既往,我们欢迎大家在 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>2025.0.0-M3</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:2025.0.0-M3'
}
}
dependencies {
compile 'org.springframework.cloud:spring-cloud-starter-config'
compile 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-client'
...
}