领先一步
VMware 提供培训和认证,助您加速进步。
了解更多我很高兴代表社区宣布 Spring Cloud 2025.1.0 发布火车里程碑 3 (M3) 今天已可用。该版本可以在 Spring Milestone 存储库中找到。您可以查看 2025.1.0 发行说明以获取更多信息。
Spring Cloud 2025.0.0-M3 依赖于 Spring Boot 4.0.0-M3。请在此处查看作为发布一部分的所有问题和拉取请求 here。
以下模块已作为 2025.1.0-M3 的一部分进行了更新
| 模块 | 版本 | 问题 |
|---|---|---|
| Spring Cloud Stream | 5.0.0-M3 | (问题) |
| Spring Cloud Config | 5.0.0-M3 | (问题) |
| Spring Cloud Build | 5.0.0-M3 | (问题) |
| Spring Cloud Kubernetes | 5.0.0-M3 | (问题) |
| Spring Cloud Task | 5.0.0-M3 | (问题) |
| Spring Cloud Contract | 5.0.0-M3 | (问题) |
| Spring Cloud Consul | 5.0.0-M3 | (问题) |
| Spring Cloud Gateway | 5.0.0-M3 | (问题) |
| Spring Cloud Netflix | 5.0.0-M3 | (问题) |
| Spring Cloud Circuitbreaker | 5.0.0-M3 | (问题) |
| Spring Cloud Vault | 5.0.0-M3 | (问题) |
| Spring Cloud Function | 5.0.0-M3 | (问题) |
| Spring Cloud Bus | 5.0.0-M3 | (问题) |
| Spring Cloud Zookeeper | 5.0.0-M3 | (问题) |
| Spring Cloud Commons | 5.0.0-M3 | (问题) |
| Spring Cloud Starter Build | 2025.1.0-M3 | (问题) |
| Spring Cloud Openfeign | 5.0.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.1.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.1.0-M3'
}
}
dependencies {
compile 'org.springframework.cloud:spring-cloud-starter-config'
compile 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-client'
...
}