内容简介:Spring Cloud Finchley 的第 8 个里程碑版 M8 已发布,该版本最值得关注的更新莫过于与 Spring Boot 2.0.0.RELEASE 兼容,但不与 Spring Boot 1.x.y 兼容。其他更新: Spring Cloud Gateway:一些错误修复和小的...
Spring Cloud Finchley 的第 8 个里程碑版 M8 已发布,该版本最值得关注的更新莫过于与 Spring Boot 2.0.0.RELEASE 兼容,但不与 Spring Boot 1.x.y 兼容。其他更新:
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 发布说明
组件版本升级:
Based on Spring Boot
2.0.0.RELEASE
Spring Cloud Gateway
2.0.0.M8
(issues)Spring Cloud Bus
2.0.0.M7
Spring Cloud Security
2.0.0.M3
Spring Cloud Commons
2.0.0.M8
(issues)Spring Cloud Config
2.0.0.M8
(issues)Spring Cloud Stream
Elmhurst.RC2
(release notes)
详情请查看发布说明:https://github.com/spring-projects/spring-cloud/wiki/Spring-Cloud-Finchley-Release-Notes
Maven
<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' ... }
【声明】文章转载自:开源中国社区 [http://www.oschina.net]
以上所述就是小编给大家介绍的《Spring Cloud Finchley M8 发布,兼容 Spring Boot 2》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:- Wine 3.2 发布,Windows 应用兼容层
- VirtualEnv 16.2.0 发布,兼容 fish 3
- Wine 2.15 发布,Windows 应用兼容层
- Wine 2.18 发布,Windows 应用兼容层
- Wine 2.19 发布,Windows 应用兼容层
- Wine 2.21 发布,Windows 应用兼容层
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
React Native:用JavaScript开发移动应用
【美】Truong Hoang Dung(张皇容) / 奇舞团 / 电子工业出版社 / 2015-9 / 65.00
React Native是当前移动端开发中的优秀解决方案。《React Native:用JavaScript开发移动应用》围绕着如何将一个完整App提交到App Store,讲解了使用React Native开发iOS应用所涉及的方方面面。首先介绍了Flexbox布局,教大家从零开始搭建一个初始应用,以此阐明React Native的基础运行机理;然后介绍了Flux的设计思想,怎么理解和使用Pro......一起来看看 《React Native:用JavaScript开发移动应用》 这本书的介绍吧!