Spring Cloud Finchley M8 已发布

发布 | Spencer Gibb | 2018年3月2日 | ...

我谨代表社区,很高兴地宣布 Spring Cloud Finchley 版本系列的里程碑 8 (M8) 今日发布。您可以在 Spring Milestone 仓库中找到此版本。您可以查看 Finchley 的 发布说明以获取更多信息

Finchley发布火车中的显著变化

Finchley.M8 与 Spring Boot 2.0.0.RELEASE 兼容。

Spring Cloud Gateway

一些错误修复和小的配置增强。

Spring Cloud Bus

修复了自定义远程事件。

Spring Cloud Security

已更新至 spring-security-oauth2-autoconfigure 2.0.0.RELEASE。

Spring Cloud Config

支持 Gitee webhooks。

Spring Cloud Stream

请参阅 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

一如既往,我们欢迎在 GitHubGitterStack OverflowTwitter 上提供反馈。

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'
    ...
}

获取 Spring 新闻通讯

通过 Spring 新闻通讯保持联系

订阅

领先一步

VMware 提供培训和认证,助您加速进步。

了解更多

获得支持

Tanzu Spring 提供 OpenJDK™、Spring 和 Apache Tomcat® 的支持和二进制文件,只需一份简单的订阅。

了解更多

即将举行的活动

查看 Spring 社区所有即将举行的活动。

查看所有