内容简介:Spring Cloud Greenwich.SR2 已发布,可在 Maven Central 中获取。更新情况如下: Spring Cloud Gateway Reactor 和 Reactor Netty 包含了许多更新和修复。当启用重试或使用 Read Body Predicate 时,Gateway 还可...
Spring Cloud Greenwich.SR2 已发布,可在 Maven Central 中获取。更新情况如下:
Spring Cloud Gateway
Reactor 和 Reactor Netty 包含了许多更新和修复。当启用重试或使用 Read Body Predicate 时,Gateway 还可以有效地缓存请求主体。
Spring Cloud Config
允许在嵌入模式下运行 Config Server 时使用 Vault。
Spring Cloud Openfeign
添加对 Spring HATEOAS 资源的支持。
Spring Cloud Contract
Gradle 插件现已发布。
以下模块作为 Greenwich.SR2 的一部分进行了更新:
| MODULE | VERSION | ISSUES |
|---|---|---|
| Spring Cloud Task | 2.1.2.RELEASE | |
| Spring Cloud Config | 2.1.3.RELEASE | (issues) |
| Spring Cloud Stream | Fishtown.SR3 | (issues) |
| Spring Cloud Sleuth | 2.1.2.RELEASE | (issues) |
| Spring Cloud Commons | 2.1.2.RELEASE | (issues) |
| Spring Cloud Openfeign | 2.1.2.RELEASE | (issues) |
| Spring Cloud Kubernetes | 1.0.2.RELEASE | (issues) |
| Spring Cloud Aws | 2.1.2.RELEASE | |
| Spring Cloud Vault | 2.1.2.RELEASE | |
| Spring Cloud Function | 2.0.2.RELEASE | (issues) |
| Spring Cloud Bus | 2.1.2.RELEASE | (issues) |
| Spring Cloud Build | 2.1.6.RELEASE | |
| Spring Cloud Zookeeper | 2.1.2.RELEASE | |
| Spring Cloud Gcp | 1.1.2.RELEASE | |
| Spring Cloud Contract | 2.1.2.RELEASE | (issues) |
| Spring Cloud Consul | 2.1.2.RELEASE | (issues) |
| Spring Cloud Security | 2.1.3.RELEASE | |
| Spring Cloud Gateway | 2.1.2.RELEASE | (issues) |
| Spring Cloud Cloudfoundry | 2.1.2.RELEASE | |
| Spring Cloud Netflix | 2.1.2.RELEASE | (issues) |
使用
通过附带有 BOM 的 Maven 开始使用:
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>Greenwich.SR2</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.8.RELEASE"
}
}
apply plugin: "io.spring.dependency-management"
dependencyManagement {
imports {
mavenBom 'org.springframework.cloud:spring-cloud-dependencies:Greenwich.SR2'
}
}
dependencies {
compile 'org.springframework.cloud:spring-cloud-starter-config'
compile 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-client'
...
}
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:- NPM包(模块)发布、更新、撤销发布
- 有赞灰度发布与蓝绿发布实践
- 【重磅发布】Linkis 0.10.0 版本发布
- BeetlSQL 3.0.9 发布,Idea 插件发布
- 贝密游戏 0.7.0 发布,发布斗地主
- 【重磅发布】DataSphere Studio 0.9.0 版本发布
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
数据挖掘导论
Pang-Ning Tan, Michael Steinbach / 范明 范宏建 / 人民邮电出版社 / 2006-01-01 / 49.00元
本书全面介绍了数据挖掘的理论和方法,旨在为读者提供将数据挖掘应用于实际问题所必需的知识。本书涵盖五个主题:数据、分类、关联分析、聚类和异常检测。除异常检测外,每个主题都包含两章:前面一章讲述基本概念、代表性算法和评估技术,后面一章较深入地讨论高级概念和算法。目的是使读者在透彻地理解数据挖掘基础的同时,还能了解更多重要的高级主题。此外,书中还提供了大量示例、图表和习题。 本书适合作为......一起来看看 《数据挖掘导论》 这本书的介绍吧!