Spring Cloud Gateway 与 Zuul 有何不同?

How is Spring Cloud Gateway different from Zuul?

我一直在使用Zuul as the edge service and API Gateway. Recently I have noticed that Spring Cloud Platform release Spring Cloud Gateway。这两个网关有什么区别?为什么 Zuul 没有扩展支持 S-C-Gateway 中的功能?新图书馆的驱动因素是什么?什么时候用?

我是 spring 云网关的作者。 Zuul 建立在 servlet 2.5(适用于 3.x)之上,使用阻塞 API。它不支持任何长期连接,例如 websockets。

网关基于 Spring Framework 5、Project Reactor 和 Spring Boot 2 使用非阻塞 API 构建。支持 Websockets,它是更好的开发者体验,因为它与 Spring.

紧密集成