Spring Cloud Greenwich 版本已发布

标签: dev | 发表时间:2019-01-28 00:00 | 作者:
出处:http://itindex.net/relian

 点击上方“方志朋”,选择“置顶或者星标”

你的关注意义重大!

就在1月23日,spring的官方博客发布了Spring Cloud Greenwich版本正式发版的消息,Greenwich版本目前已经上了Maven的中央仓库,现在来看看Greenwich有哪些变化。

End of Life (EOL) 提醒

Edgware版本将于2019年8月1日达到EOL状态。您可以在此处阅读正式公告。

Spring Cloud Finchley发布系列目前是一个主要版本,并且与Spring Boot 2.0.x版本相关联。 因此,当Spring Boot 2.0.x版本分支标记为EOL时,Spring Cloud Finchley版本系列将达到EOL状态。

Spring Cloud Greenwich版本系列被认为是次要版本,并将继续支持Spring Boot 2.x版本分支。

Greenwich有哪些新变化

Spring Cloud所有的项目都进行了更新,以实现Java 11的兼容性。 并且Greenwich 版本有两个新项目,Spring Cloud GCP(提供与Google Cloud Platform的集成)和Spring Cloud Kubernetes(提供与Kubernetes的集成)。

Spring Cloud Netflix项目进入维护模式

最近,Netflix宣布Hystrix正在进入维护模式(不再添加新功能,只修复bug)。 自2016年以来,Ribbon已处于类似状态。虽然Hystrix和Ribbon现在处于维护模式,但它们仍然在Netflix上大规模部署。

Hystrix Dashboard和Turbine已被Atlas取代。以下Spring Cloud Netflix模块将进入维护模式:

  • spring-cloud-netflix-archaius

  • spring-cloud-netflix-hystrix-contract

  • spring-cloud-netflix-hystrix-dashboard

  • spring-cloud-netflix-hystrix-stream

  • spring-cloud-netflix-hystrix

  • spring-cloud-netflix-ribbon

  • spring-cloud-netflix-turbine-stream

  • spring-cloud-netflix-turbine

  • spring-cloud-netflix-zuul

这不包括Eureka或并发限制模块。

替代组件

不过不用慌张,虽然netflix绝大部分组件已经进入维护模式,但是Spring Cloud团队开发了一些新的组件去取代这些组件。

当前组件 可取代的组件
Hystrix Resilience4j
Hystrix Dashboard / Turbine Micrometer + Monitoring System
Ribbon Spring Cloud Loadbalancer
Zuul 1 Spring Cloud Gateway
Archaius 1 Spring Boot external config + Spring Cloud Config

下面来看一下Greenwich版本的主要变化。

Spring Cloud Sleuth

  • 更新到了最新的Brave库。

  • WebFlux和Reactor集成的性能改进。

  • 增加了GRPC组件

  • 增加了对多个span reporter 支持。

  • 增加了限速采样器的支持。

Spring Cloud GCP

See the Google release announcement.

Spring Cloud Netflix

  • 升级了Ribbon and Eureka 的版本

  • 为新的ServiceInstance.instanceId字段添加了支持。

Spring Cloud Consul

  • 为新的ServiceInstance.instanceId字段添加了支持。

Spring Cloud Gateway

  • 添加了重写响应头过滤器。

  • 在各自的路由predict中为多个路径和主机添加了支持,并自定义在某些情况下返回的HTTP状态代码。

Spring Cloud Kubernetes

  • 你现在可以将ServiceInstance元数据配置为来自Kubernetes Labels对象、Annotations对象和Ports对象。

  • 在启动期间使用KubernetesDiscoveryClient进行了增强。

  • 添加了一个模块来检测Istio的存在。

Spring Cloud Security

添加了Spring Cloud Gateway 的一个过滤器去支持 OAuth2。具体可参考这个案例。https://github.com/spring-cloud-samples/sample-gateway-oauth2login

Spring Cloud Config

添加了EnvironmentRepository以支持CredHub后端。

Spring Cloud OpenFeign

  • 支持了@QueryMap注解

  • 升级到了OpenFeign版本为10.1.0.

其他升级的组件比如Spring Cloud Commons、Spring Cloud 、VaultSpring Cloud Contract、Spring Cloud Task、Spring Cloud Zookeeper、Spring Cloud Stream、Spring Cloud Function见原文:https://spring.io/blog/2019/01/23/spring-cloud-greenwich-release-is-now-available

以下模块作为Greenwich.RELEASE版本进行了更新:

模块 版本
Spring Cloud Sleuth 2.1.0.RELEASE (issues)
Spring Cloud Gcp 1.1.0.RELEASE (issues)
Spring Cloud Build 2.1.2.RELEASE
Spring Cloud Netflix 2.1.0.RELEASE (issues)
Spring Cloud Consul 2.1.0.RELEASE
Spring Cloud Gateway 2.1.0.RELEASE (issues)
Spring Cloud Greenwich.RELEASE
Spring Cloud Function 2.0.0.RELEASE (issues)
Spring Cloud Stream Fishtown.RELEASE
Spring Cloud Zookeeper 2.1.0.RELEASE
Spring Cloud Cloudfoundry 2.1.0.RELEASE
Spring Cloud Aws 2.1.0.RELEASE
Spring Cloud Task 2.1.0.RELEASE
Spring Cloud Kubernetes 1.0.0.RELEASE (issues)
Spring Cloud Contract 2.1.0.RELEASE (issues)
Spring Cloud Release Greenwich.RELEASE
Spring Cloud Security 2.1.0.RELEASE
Spring Cloud Starter Greenwich.RELEASE
Spring Cloud Bus 2.1.0.RELEASE (issues)
Spring Cloud Config 2.1.0.RELEASE (issues)
Spring Cloud Vault 2.1.0.RELEASE (issues)
Spring Cloud Openfeign 2.1.0.RELEASE (issues)
Spring Cloud Commons 2.1.0.RELEASE
Spring Cloud Dependencies 2.1.2.RELEASE

Spring Cloud Finchely版本发布才半年多,Greenwich版本就发布了,预计2019年7月将会发布H版本了,有得学了,大家加油。

注:本文部分参考spring官方博客https://spring.io/blog/2019/01/23/spring-cloud-greenwich-release-is-now-available

-更多文章-

分布式事务的实现原理

SpringMVC工作原理详解

面试被问烂的SpringIOC(求求你别再问了)

SpringAOP是什么?你都拿它做什么?

浅析几种线程安全模型


-关注我-

看完了,帮我点个“好看”鸭

点鸭点鸭

↓↓↓↓

相关 [spring cloud greenwich] 推荐:

Spring Cloud Greenwich 版本已发布

- - IT瘾-dev
 点击上方“方志朋”,选择“置顶或者星标”. 就在1月23日,spring的官方博客发布了Spring Cloud Greenwich版本正式发版的消息,Greenwich版本目前已经上了Maven的中央仓库,现在来看看Greenwich有哪些变化. End of Life (EOL) 提醒. Edgware版本将于2019年8月1日达到EOL状态.

大话 Spring Cloud

- - IT瘾-dev
研究了一段时间spring boot了准备向spirng cloud进发,公司架构和项目也全面拥抱了Spring Cloud. 在使用了一段时间后发现Spring Cloud从技术架构上降低了对大型系统构建的要求,使我们以非常低的成本(技术或者硬件)搭建一套高效、分布式、容错的平台,但Spring Cloud也不是没有缺点,小型独立的项目不适合使用.

Spring Cloud限流详解 | Spring Cloud|周立

- -
限流往往是一个绕不开的话题. 本文详细探讨在Spring Cloud中如何实现限流. Zuul上实现限流是个不错的选择,只需要编写一个过滤器就可以了,关键在于如何实现限流的算法. 常见的限流算法有漏桶算法以及令牌桶算法. https://www.cnblogs.com/LBSer/p/4083131.html,写得通俗易懂,你值得拥有,我就不拽文了.

Spring Cloud Kubernetes指南

- -
当我们构建微服务解决方案时,SpringCloud和Kubernetes都是最佳解决方案,因为它们为解决最常见的挑战提供组件. 但是,如果我们决定选择Kubernetes作为我们的解决方案的主要容器管理器和部署平台,我们仍然可以主要通过SpringCloudKubernetes项目使用SpringCloud的有趣特性.

Spring Cloud 快速入门

- - IT瘾-tuicool
Spring Cloud 是一套完整的微服务解决方案,基于 Spring Boot 框架,准确的说,它不是一个框架,而是一个大的容器,它将市面上较好的微服务框架集成进来,从而简化了开发者的代码量. 本课程由浅入深带领大家一步步攻克 Spring Cloud 各大模块,接着通过一个实例带领大家了解大型分布式微服务架构的搭建过程,最后深入源码加深对它的了解.

Deploy the spring cloud project using jenkins

- - Telami
先简单记录下Jenkins部署maven聚合工程要点. Root pom配置成项目根目录的pom.xml. maven命令单独install 欲构建的项目. 选项后可跟随{groupId}:{artifactId}或者所选模块的相对路径(多个模块以逗号分隔). 表示同时处理选定模块所依赖的模块. 表示同时处理依赖选定模块的模块.

Spring Cloud Gateway(限流) | Wind Mt

- -
限流可以保障我们的 API 服务对所有用户的可用性,也可以防止网络攻击. 一般开发高并发系统常见的限流有:限制总并发数(比如数据库连接池、线程池)、限制瞬时并发数(如 nginx 的 limit_conn 模块,用来限制瞬时并发连接数)、限制时间窗口内的平均速率(如 Guava 的 RateLimiter、nginx 的 limit_req 模块,限制每秒的平均速率);其他还有如限制远程接口调用速率、限制 MQ 的消费速率.

快速突击 Spring Cloud Gateway

- - 掘金后端
认识 Spring Cloud Gateway. Spring Cloud Gateway 是一款基于 Spring 5,Project Reactor 以及 Spring Boot 2 构建的 API 网关,是 Spring Cloud 微服务生态的主要组件之一. Spring Cloud Gateway 主要负责接口请求的路由分发,并且支持对请求的安全验证,流量监控和流量控制等扩展操作.

Spring Cloud Gateway2.0实践报告

- - 掘金后端
你的点赞就是对我最大的支持. 原创:小姐姐味道(微信公众号ID:xjjdog),欢迎分享,转载请保留出处. 本文将从知识拓扑讲起,谈一下api网关的功能,以及spring cloud gateway的使用方法. 一、知识拓扑 (使用和原理) 二、网关的作用 三、Predicate,路由匹配 四、Filter,过滤器编写 五、自定义过滤器 六、常见问题 复制代码.

微服务框架Spring Cloud介绍 Part2: Spring Cloud与微服务

- - skaka的博客
之前介绍过 微服务的概念与Finagle框架, 这个系列介绍Spring Cloud.. Spring Cloud还是一个相对较新的框架, 今年(2016)才推出1.0的release版本. 虽然Spring Cloud时间最短, 但是相比我之前用过的Dubbo和Finagle, Spring Cloud提供的功能最齐全..