抢先一步
VMware 提供培训和认证,助您快速提升。
了解更多我代表社区,很高兴地宣布 Spring Cloud 2025.0.0 Release Train 的里程碑 3 (M3) 现已发布。该版本可在 Spring Milestone 仓库中找到。您可以查看 2025.0.0 版本说明以获取更多信息。
此版本中所有变更的完整列表可在 GitHub 上的此项目 中找到。
该版本基于 Spring Boot 3.5.0-M3。
BindingsLifecycleController
BindingsLifecycleController
MessageConverterHelper
的行为,以确保用户可以在单个 Message converter 上强制失败以下模块已作为 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 提供反馈。
使用带有 BOM (仅依赖管理) 的 Maven 开始
<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'
...
}