超越自我
VMware 提供培训和认证,助您加速进步。
了解更多代表社区,我很高兴地宣布 Spring Cloud Finchley Release Train 的 SR2(Service Release,服务版本)今天已经发布。该版本可以在 Maven Central 找到。你可以查看 Finchley 版本说明以获取更多信息。
ModifyRequestBodyGatewayFilterFactory
正确更新请求头 #492以下模块在 Finchley.SR2 中进行了更新
模块 | 版本 |
---|---|
Spring Cloud Gateway | 2.0.2.RELEASE |
Spring Cloud Sleuth | 2.0.2.RELEASE |
Spring Cloud Config | 2.0.2.RELEASE |
Spring Cloud Netflix | 2.0.2.RELEASE |
Spring Cloud Commons | 2.0.2.RELEASE |
Spring Cloud Contract | 2.0.2.RELEASE |
Spring Cloud Vault | 2.0.2.RELEASE |
Spring Cloud Openfeign | 2.0.2.RELEASE |
Spring Cloud AWS | 2.0.1.RELEASE |
Spring Cloud Cloud Foundry | 2.0.1.RELEASE |
Spring Cloud Security | 2.0.1.RELEASE |
一如既往,我们欢迎您在 GitHub、Gitter、Stack Overflow 和 Twitter 上提供反馈意见。
使用带 BOM(仅依赖管理)的 Maven 开始
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>Finchley.SR2</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.5.RELEASE"
}
}
apply plugin: "io.spring.dependency-management"
dependencyManagement {
imports {
mavenBom 'org.springframework.cloud:spring-cloud-dependencies:Finchley.SR2'
}
}
dependencies {
compile 'org.springframework.cloud:spring-cloud-starter-config'
compile 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-client'
...
}