领先一步
VMware 提供培训和认证,以加速您的进步。
了解更多我代表社区,高兴地宣布 Spring Cloud Hoxton 发布列车 的服务版本 8 (SR8) 今天已上线。该版本可在 Maven Central 中找到。您可以查看 Hoxton 的 发行说明以了解更多信息。
这主要是一个错误修复和文档更新版本。
在 GitHub 项目 中查看所有包含的问题和拉取请求。Hoxton.SR8 兼容 Spring Boot 2.3.x 和 2.2.x。
增加了对 Eureka Client 的 TLS 配置的支持。
增加了对 Config Client 的 TLS 配置的支持。
增加了对 Spring Cloud Loadbalancer 的支持。自动将命名空间添加到服务实例元数据。
Hoxton.SR8 更新了以下模块
| 模块 | 版本 | 问题 |--- |--- |--- |--- | Spring Cloud Starter Build | Hoxton.SR8 |
| Spring Cloud Netflix | 2.2.5.RELEASE |
| Spring Cloud Openfeign | 2.2.5.RELEASE | (问题) | Spring Cloud Config | 2.2.5.RELEASE |
| Spring Cloud Aws | 2.2.4.RELEASE |
| Spring Cloud Kubernetes | 1.1.6.RELEASE | (问题) | Spring Cloud Gateway | 2.2.5.RELEASE | (问题) | Spring Cloud Gcp | 1.2.5.RELEASE |
| Spring Cloud Commons | 2.2.5.RELEASE | (问题) | Spring Cloud Sleuth | 2.2.5.RELEASE | (问题) | Spring Cloud Vault | 2.2.5.RELEASE |
与往常一样,我们欢迎您在 GitHub、Gitter、Stack Overflow 或 Twitter 上提供反馈。
使用 Maven 和 BOM(仅依赖管理)开始
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>Hoxton.SR8</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.10.RELEASE"
}
}
apply plugin: "io.spring.dependency-management"
dependencyManagement {
imports {
mavenBom 'org.springframework.cloud:spring-cloud-dependencies:Hoxton.SR8'
}
}
dependencies {
compile 'org.springframework.cloud:spring-cloud-starter-config'
compile 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-client'
//...
}