我们有一个springboot应用程序,它当前的网关是Zuul 1。我们的应用程序运行在Springboot 2.0.0.M2中。我们正在尝试将我们的Zuul网关升级到Zuul 2。我们创建了一个带有Zuul 2依赖项的springboot应用程序,并添加了webflux依赖项来获取Netty服务器。
The server starts fine, but we are still unclear that how the springboot application will understand that this is a gateway and filters needs to be executed. Although we have created Routes filter, but the same is not getting invoked.
提前谢谢你,
罗恩
发布于 2020-11-19 15:08:06
如果你看了18:00 spring developers的视频"https://www.youtube.com/watch?v=9wocKqF15B8“。他们明确表示,zuul2将不会得到spring生态系统的支持。此外,zuul2 (非阻塞调用)的替代品是spring cloud gateway,它也是非阻塞调用。
https://stackoverflow.com/questions/55615195
复制相似问题