Spring Cloud Greenwich.M3 版本发布

栏目: 软件资讯 · 发布时间: 7年前

内容简介:Spring Cloud Function 的第三个 Milestone 3 已发布,该版本的各个模块现可在 Spring Milestone 存储库中使用。 主要更改 此版本与 Spring Boot 2.1.0.RELEASE 兼容,并已对 Java 11 兼容性进行了更改。 Spring...

Spring Cloud Function 的第三个 Milestone 3 已发布,该版本的各个模块现可在 Spring Milestone 存储库中使用。

主要更改

此版本与 Spring Boot 2.1.0.RELEASE 兼容,并已对 Java 11 兼容性进行了更改。

Spring Cloud Bus

  • Fixed a compatiblity issue with Spring Cloud Stream.

Spring Cloud Commons

  • Added instanceId to ServiceInstance interface. Also added a ReactiveLoadBalancerinterface and implementation using Reactor.

Spring Cloud Config

  • Various bug fixes and small enhancements.

Spring Cloud Contract

  • Support was added for WebTestClient and JUnit 5 extensions.

Spring Cloud Consul

  • Bug fixes.

Spring Cloud Function

  • Minor enhacements and bug fixes.

Spring Cloud Gateway

  • Added a rewrite response header filter and bug fixes.

Spring Cloud Gcp

  • Minor enhacements and bug fixes.

Spring Cloud Kubernetes

  • ServiceInstance metadata can now be configured to come from Kubernetes Labels, Annotations and Ports. Some other smal enhacements and bug fixes.

Spring Cloud Netflix

  • Various version upgrades.

Spring Cloud Openfeign

  • Added missing configuration metadata.

Spring Cloud Sleuth

  • Various improvements to Reactor and Reactor Netty instrumentation and other minor enhancements.

Spring Cloud Stream

  • Minor enhacements and bug fixes.

Spring Cloud Task

  • Now enabled thru auto-configuration.

Spring Cloud Vault

  • Adds support for Azure and GCP authentication and some dependency updates.

以下模块已作为 Greenwich.M3 的一部分进行了更新:

MODULEVERSIONISSUES
Spring CloudGreenwich.M3
Spring Cloud Aws2.0.1.RELEASE(issues)
Spring Cloud Bus2.1.0.M2(issues)
Spring Cloud Cloudfoundry2.1.0.M1
Spring Cloud Commons2.1.0.M2(issues)
Spring Cloud Config2.1.0.M3(issues)
Spring Cloud Contract2.1.0.M2(issues)
Spring Cloud Consul2.1.0.M2(issues)
Spring Cloud Function2.0.0.RC2(issues)
Spring Cloud Gateway2.1.0.M3(issues)
Spring Cloud Gcp1.1.0.M3
Spring Cloud Kubernetes1.0.0.M2(issues)
Spring Cloud Netflix2.1.0.M3(issues)
Spring Cloud Openfeign2.1.0.M2
Spring Cloud Security2.1.0.M1
Spring Cloud Sleuth2.1.0.M2(issues)
Spring Cloud StreamFishtown.RC2Blog post
Spring Cloud Task2.1.0.M1(issues)
Spring Cloud Vault2.1.0.M2(issues)
Spring Cloud Zookeeper2.1.0.M1

Maven (dependency management only):

<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>Greenwich.M3</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>

or with 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:Greenwich.M3'
    }
}

dependencies {
    compile 'org.springframework.cloud:spring-cloud-starter-config'
    compile 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-client'
    ...
}

【声明】文章转载自:开源中国社区 [http://www.oschina.net]


以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

数据结构

数据结构

严蔚敏、吴伟民 / 清华大学出版社 / 2007-3-1 / 30.0

《数据结构》(C语言版)是为“数据结构”课程编写的教材,也可作为学习数据结构及其算法的C程序设计的参数教材。 本书的前半部分从抽象数据类型的角度讨论各种基本类型的数据结构及其应用;后半部分主要讨论查找和排序的各种实现方法及其综合分析比较。其内容和章节编排1992年4月出版的《数据结构》(第二版)基本一致,但在本书中更突出了抽象数据类型的概念。全书采用类C语言作为数据结构和算法的描述语言。 ......一起来看看 《数据结构》 这本书的介绍吧!

JSON 在线解析
JSON 在线解析

在线 JSON 格式化工具

UNIX 时间戳转换
UNIX 时间戳转换

UNIX 时间戳转换

正则表达式在线测试
正则表达式在线测试

正则表达式在线测试