领先一步
VMware 提供培训和认证,以加速您的进步。
了解更多我代表社区很高兴地宣布,Spring Cloud Hoxton 发布列车服务版本 11 (SR11) 现已推出。Spring Cloud Hoxton 的发布可以在 Maven Central 中找到。您可以查看 Hoxton 的 发行说明以获取更多信息。
在此版本中查看所有包含的问题 此处。
这主要是一个错误修复和文档发布。Hoxton.SR11 与 Spring Boot 2.3.x 和 2.2.x 兼容。
FeignClientProperties.FeignClientConfiguration.followRedirects
属性SpringEncoder
字符集确定FeignClient
注释中的多个限定符以下模块已作为 Hoxton.SR11 的一部分更新
模块 | 版本 | 问题 |
---|---|---|
Spring Cloud Starter Build | Hoxton.SR11 | |
Spring Cloud Netflix | 2.2.8.RELEASE | (问题) |
Spring Cloud Openfeign | 2.2.8.RELEASE | (问题) |
Spring Cloud Config | 2.2.8.RELEASE | (问题) |
Spring Cloud Gateway | 2.2.8.RELEASE | (问题) |
Spring Cloud Gcp | 1.2.8.RELEASE | |
Spring Cloud Commons | 2.2.8.RELEASE | (问题) |
Spring Cloud Consul | 2.2.7.RELEASE | (问题) |
Spring Cloud Contract | 2.2.7.RELEASE | (问题) |
Spring Cloud Kubernetes | 1.1.9.RELEASE | (问题) |
Spring Cloud Sleuth | 2.2.8.RELEASE | (问题) |
Spring Cloud Stream | Horsham.SR12 | |
Spring Cloud Function | 3.0.14.RELEASE | |
Spring Cloud Bus | 2.2.4.RELEASE | |
Spring Cloud Circuit Breaker | 1.0.5.RELEASE | |
Spring Cloud Security | 2.2.5.RELEASE | |
Spring Cloud ZooKeeper | 2.2.5.RELEASE | (问题) |
与往常一样,我们欢迎您在 GitHub、Gitter、Stack Overflow 或 Twitter 上提供反馈。
要使用带有 BOM 的 Maven 入门(仅限依赖项管理)
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>Hoxton.SR11</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.SR11'
}
}
dependencies {
compile 'org.springframework.cloud:spring-cloud-starter-config'
compile 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-client'
//...
}