领先一步
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'
...
}