领先一步
VMware 提供培训和认证,以加速您的进步。
了解更多我代表社区很高兴地宣布,Spring Cloud 2021.0.9 发布列车的正式版 (RELEASE) 现已可用。该版本可以在 Maven Central 中找到。您可以查看 2021.0.9 的 发行说明以获取更多信息。
此 Spring Cloud 版本基于 Spring Boot 2.6.15,并与 Spring Boot 2.7.18 和 3.0.13 兼容。
这将是 Spring Cloud 2021.0.x 的最后一个开源版本。此发布列车中的所有项目都已达到生命周期结束。我们建议您升级到 Spring Cloud 2022.0.x 或 2023.0.x。
以下模块已作为 2021.0.9 的一部分进行了更新
模块 | 版本 | 问题 |
---|---|---|
Spring Cloud Netflix | 3.1.8 | (问题) |
Spring Cloud Stream | 3.2.10 | (问题) |
Spring Cloud Starter Build | 2021.0.9 | (问题) |
Spring Cloud Consul | 3.1.5 | (问题) |
Spring Cloud Cloudfoundry | 3.1.4 | (问题) |
Spring Cloud Contract | 3.1.9 | (问题) |
Spring Cloud Zookeeper | 3.1.5 | (问题) |
Spring Cloud Sleuth | 3.1.10 | (问题) |
Spring Cloud Bus | 3.1.3 | (问题) |
Spring Cloud Function | 3.2.12 | (问题) |
Spring Cloud Openfeign | 3.1.9 | (问题) |
Spring Cloud Config | 3.1.9 | (问题) |
Spring Cloud Circuitbreaker | 2.1.8 | (问题) |
Spring Cloud Build | 3.1.9 | (问题) |
Spring Cloud Kubernetes | 2.1.9 | (问题) |
Spring Cloud Commons | 3.1.8 | (问题) |
Spring Cloud Vault | 3.1.4 | (问题) |
与往常一样,我们欢迎您在 GitHub、Gitter、Stack Overflow 或 Twitter 上提供反馈。
要使用 Maven 和 BOM(仅依赖管理)开始使用
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>2021.0.9</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"
}
}
apply plugin: "io.spring.dependency-management"
dependencyManagement {
imports {
mavenBom 'org.springframework.cloud:spring-cloud-dependencies:2021.0.9'
}
}
dependencies {
compile 'org.springframework.cloud:spring-cloud-starter-config'
compile 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-client'
...
}