领先一步
VMware 提供培训和认证,助您快速提升技能。
了解更多我谨代表社区宣布,Spring Cloud Finchley发布列车的里程碑版本 8 (M8) 今日正式发布。此版本可以在Spring Milestone 仓库中找到。您可以查看 Finchley 的发布说明以了解更多信息。
Finchley.M8 与 Spring Boot 2.0.0.RELEASE 兼容。
一些错误修复和小的配置增强。
修复了自定义远程事件。
更新到 spring-security-oauth2-autoconfigure 2.0.0.RELEASE。
支持 Gitee webhooks。
请参见 Elmhurst.RC2 的发布说明。
以下模块已作为 Finchley.M8 的一部分进行了更新
模块 | 版本 |
---|---|
Spring Cloud Gateway | 2.0.0.M8 |
Spring Cloud Bus | 2.0.0.M7 |
Spring Cloud Security | 2.0.0.M3 |
Spring Cloud Commons | 2.0.0.M8 |
Spring Cloud Config | 2.0.0.M8 |
Spring Cloud Stream | Elmhurst.RC2 |
与往常一样,我们欢迎您在GitHub、Gitter、Stack Overflow 或Twitter 上提供反馈。
使用 Maven 和 BOM (仅依赖管理) 开始
<repositories>
<repository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>http://repo.spring.io/milestone</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>Finchley.M8</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"
}
}
repositories {
maven {
url 'http://repo.spring.io/milestone'
}
}
apply plugin: "io.spring.dependency-management"
dependencyManagement {
imports {
mavenBom 'org.springframework.cloud:spring-cloud-dependencies:Finchley.M8'
}
}
dependencies {
compile 'org.springframework.cloud:spring-cloud-starter-config'
compile 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-client'
...
}