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 社区所有即将举行的活动。

查看全部