春云门户和祖尔有什么不同?

我一直使用 祖尔作为边缘服务和 API 网关。最近我注意到 SpringCloudPlatform 发布了 春云之门。这两个网关之间有什么区别?为什么 Zuul 没有扩展到支持 S-C-Gateway 中的功能?一个新图书馆的驱动因素是什么?何时使用?

46067 次浏览

I am the author of spring cloud gateway. Zuul is built on servlet 2.5 (works with 3.x), using blocking APIs. It doesn't support any long lived connections, like websockets.

Gateway is built on Spring Framework 5, Project Reactor and Spring Boot 2 using non-blocking APIs. Websockets are supported and it's a much better developer experience since it's tightly integrated with Spring.