Spring Cloud Hoxton.M1 已发布。

发布 | Spencer Gibb | 2019年7月3日 | ...

我谨代表社区宣布,Spring Cloud Hoxton 发布列车的第一个里程碑版本 (M1) 今天已发布。该版本可以在 Spring Milestone 存储库中找到。您可以查看 Hoxton 发布说明 以获取更多信息。

Hoxton 发布列车的显著变化

此里程碑版本与 Spring Boot 2.2.0.M4 兼容。

Spring Cloud Gateway

Spring Cloud Gateway 已添加对 RSocket 的支持。敬请关注即将发布的博文了解更多信息。

Spring Cloud Contract

Gradle 支持已更新至 5.5 版,Groovy 更新至 2.5 版。进行了重大的重构,尽可能简化和重写为 Java。

Spring Cloud Cloudfoundry

添加了一个使用 Cloud Foundry 基于 DNS 的发现的选项。这对于容器到容器网络很有用。

Spring Cloud Config

添加了对 Google Cloud Source(一个 Git 托管服务)的支持,以及一个新的 Redis 环境存储库。

Spring Cloud Sleuth

Sleuth 现在导入 Brave BOM。

路线图

Spring Cloud Circuit Breaker 项目将退出孵化器状态。Spring Cloud Loadbalancer 将更新以填补 Ribbon 在 Spring Cloud Netflix 中进入维护模式后留下的漏洞。Spring Cloud Gateway RSocket 支持将继续改进。


以下模块已作为 Hoxton.M1 的一部分更新

| 模块 | 版本 | 问题 |--- |--- |--- |--- | Spring Cloud Commons | 2.2.0.M1 | (问题) | Spring Cloud Contract | 2.2.0.M1 | (问题) | Spring Cloud Cloudfoundry | 2.2.0.M1 | (问题) | Spring Cloud Openfeign | 2.2.0.M1 | (问题) | Spring Cloud Security | 2.2.0.M1 |   | Spring Cloud Config | 2.2.0.M1 | (问题) | Spring Cloud Stream | Horsham.M2 |   | Spring Cloud Aws | 2.2.0.M1 |   | Spring Cloud Bus | 2.2.0.M1 |   | Spring Cloud Zookeeper | 2.2.0.M1 | (问题) | Spring Cloud Task | 2.2.0.M1 | (问题) | Spring Cloud Gateway | 2.2.0.M1 | (问题) | Spring Cloud Sleuth | 2.2.0.M1 | (问题) | Spring Cloud Consul | 2.2.0.M1 | (问题) | Spring Cloud Netflix | 2.2.0.M1 | (问题) | Spring Cloud Gcp | 1.2.0.M1 |   | Spring Cloud Function | 3.0.0.M1 |   | Spring Cloud Vault | 2.2.0.M1 |   | Spring Cloud Kubernetes | 1.1.0.M1 | (问题)

与往常一样,我们欢迎您在 GitHubGitterStack OverflowTwitter 上提供反馈。

要使用 Maven 和 BOM(仅依赖项管理)开始使用

<repositories>
    <repository>
        <id>spring-milestones</id>
        <name>Spring Milestones</name>
        <url>https://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>Hoxton.M1</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.9.RELEASE"
    }
}

repositories {
    maven {
        url 'https://repo.spring.io/milestone'
    }
}

apply plugin: "io.spring.dependency-management"

dependencyManagement {
    imports {
        mavenBom 'org.springframework.cloud:spring-cloud-dependencies:Hoxton.M1'
    }
}

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

查看全部