内容简介:Spring Cloud Finchley 的 Service Release 4 (SR4) 版本已发布,本次更新主要是对其包含的一些模块进行了升级,查看发布说明以了解更多信息,可从 Maven 中央仓库获取源码。Spring Cloud Finchley 基于 Spring B...
Spring Cloud Finchley 的 Service Release 4 (SR4) 版本已发布,本次更新主要是对其包含的一些模块进行了升级,查看发布说明以了解更多信息,可从 Maven 中央仓库获取源码。Spring Cloud Finchley 基于 Spring Boot 2.0.x 而构建。
已升级的模块
| MODULE | VERSION | ISSUES |
|---|---|---|
| Spring Cloud Commons | 2.0.4.RELEASE | (issues) |
| Spring Cloud Openfeign | 2.0.4.RELEASE | |
| Spring Cloud Dependencies | Finchley.SR4 | |
| Spring Cloud Release | Finchley.SR4 | |
| Spring Cloud Starter | Finchley.SR4 | |
| Spring Cloud Stream | Elmhurst.SR3 | |
| Spring Cloud Cloudfoundry | 2.0.2.RELEASE | |
| Spring Cloud Task | 2.0.2.RELEASE | |
| Spring Cloud Build | 2.0.6.RELEASE | |
| Spring Cloud Vault | 2.0.4.RELEASE | (issues) |
| Spring Cloud Zookeeper | 2.0.2.RELEASE | |
| Spring Cloud Config | 2.0.5.RELEASE | (issues) |
| Spring Cloud Aws | 2.0.3.RELEASE | |
| Spring Cloud Bus | 2.0.2.RELEASE | |
| Spring Cloud | Finchley.SR4 | |
| Spring Cloud Security | 2.0.2.RELEASE | |
| Spring Cloud Gateway | 2.0.4.RELEASE | (issues) |
| Spring Cloud Netflix | 2.0.4.RELEASE | (issues) |
| Spring Cloud Sleuth | 2.0.4.RELEASE | (issues) |
| Spring Cloud Consul | 2.0.3.RELEASE | (issues) |
| Spring Cloud Contract | 2.0.4.RELEASE | (issues) |
| Spring Cloud Function | 1.0.2.RELEASE |
其他详细更新内容请查看发布公告,主要是各模块的 bug 修复。
使用
通过附带有 BOM 的 Maven 开始使用:
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>Finchley.SR4</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"
}
}
apply plugin: "io.spring.dependency-management"
dependencyManagement {
imports {
mavenBom 'org.springframework.cloud:spring-cloud-dependencies:Finchley.SR4'
}
}
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 版本发布
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
机器学习算法原理与编程实践
郑捷 / 电子工业出版社 / 2015-11 / 88.00
本书是机器学习原理和算法编码实现的基础性读物,内容分为两大主线:单个算法的原理讲解和机器学习理论的发展变迁。算法除包含传统的分类、聚类、预测等常用算法之外,还新增了深度学习、贝叶斯网、隐马尔科夫模型等内容。对于每个算法,均包括提出问题、解决策略、数学推导、编码实现、结果评估几部分。数学推导力图做到由浅入深,深入浅出。结构上数学原理与程序代码一一对照,有助于降低学习门槛,加深公式的理解,起到推广和扩......一起来看看 《机器学习算法原理与编程实践》 这本书的介绍吧!