领先一步
VMware 提供培训和认证,以加速您的进步。
了解更多我代表社区,很高兴地宣布 Spring Cloud Greenwich 发布列车的服务发布版 5 (SR5) 今天已发布。该版本可以在 Maven Central 中找到。您可以查看 Greenwich 的 发行说明 或 Spring Cloud 项目 以获取更多信息。
此版本包含错误修复、次要增强功能和文档更新。
这是 Greenwich 发布列车的最后一次计划发布(有关更多详细信息,请参阅 此处)。我们建议您尽快升级到 Hoxton。Greenwich.SR5 基于 Spring Boot 2.1.12。
为了支持从 YAML 中合并配置客户端的列表,进行了一项 更改,以便将每个 PropertySource
单独添加到环境中,而不是添加到复合环境中。
以下模块已更新为 Greenwich.SR5 的一部分
| 模块 | 版本 | 问题 |--- |--- |--- |--- | Spring Cloud Build | 2.1.10.RELEASE |
| Spring Cloud Sleuth | 2.1.7.RELEASE | (问题) | Spring Cloud Consul | 2.1.5.RELEASE | (问题) | Spring Cloud Gateway | 2.1.5.RELEASE | (问题) | Spring Cloud Contract | 2.1.5.RELEASE | (问题) | Spring Cloud Netflix | 2.1.5.RELEASE | (问题) | Spring Cloud Gcp | 1.1.5.RELEASE |
| Spring Cloud Config | 2.1.6.RELEASE | (问题) | Spring Cloud Openfeign | 2.1.5.RELEASE | (问题) | Spring Cloud Commons | 2.1.5.RELEASE | (问题) | Spring Cloud Aws | 2.1.4.RELEASE |
| Spring Cloud Vault | 2.1.5.RELEASE |
| Spring Cloud Bus | 2.1.4.RELEASE | (问题) | Spring Cloud Kubernetes | 1.0.5.RELEASE | (问题)
与往常一样,我们欢迎您在 GitHub、Gitter、Stack Overflow 或 Twitter 上提供反馈。
要使用带有 BOM 的 Maven(仅依赖项管理)开始使用
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>Greenwich.SR5</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
plugins {
id 'org.springframework.boot' version '2.1.12.RELEASE'
id 'io.spring.dependency-management' version '1.0.8.RELEASE'
id 'java'
}
group = 'com.example'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.cloud:spring-cloud-starter-config'
implementation 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-client'
// ...
}