Slide 14
Slide 14 text
Spring Cloud Netflix Zuul → Spring Cloud Gateway
Gateway: More than 20 Filters
As the infra is no longer blocking you, you can now move to reactive Web in your
services - but should you?
zuul:
● Non-reactive, Servlet-based
● Routing by serviceId by default
● Possibility to set up options via properties, including ignored
services, patterns and headers and ignoring sensitive headers
(true by default)
● Routes set in properties with limited config (id, serviceId,
path, url, stripPrefix, retrayable, sensitiveHeaders,
customSensitiveHeaders)
Gateway:
● Reactive, Netty-based
● Explicit route setup required
● Possibility to define routes both via properties and via functional