gpt4 book ai didi

spring-boot - Zuul 网关 - setSendZuulResponse & removeRouteHost

转载 作者:行者123 更新时间:2023-12-03 14:58:08 25 4
gpt4 key购买 nike

只是想澄清一下 - 在 Netflix 的 Zuul 网关中,RequestContext 对象有两个方法,setSendZuulResponse 和 removeRouteHost。

首先,谁能告诉我两者之间的区别。从这里 post ,他们做同样的事情,但我找不到描述这些( sendZuulResponseremoveRouteHost )的文档。

其次,Zuul 过滤器是否会命中资源/源服务器而不管是否被过滤但只是隐藏了对客户端的响应?基于 sendZuulResponse 的文档, 它说:

"If this value if true then the response should be sent to the client."

我的理由是,如果此值设置为 false,则不应*将响应发送给客户端;然而,Zuul 有响应(???),这意味着它无论如何都发送了请求(如果这是有道理的)。

谢谢。

最佳答案

如果您使用的是 Spring Cloud Netflix Zuul 依赖项,则 SimpleHostRoutingFilter进行下游调用的类,只有在满足以下代码时才会被激活

RequestContext.getCurrentContext().getRouteHost() != null && RequestContext.getCurrentContext().sendZuulResponse();
从中我们可以看到,如果路由主机为 null 或 Zuul 响应设置为 false,则过滤器将不会运行,也不会向下游服务发出请求。

关于spring-boot - Zuul 网关 - setSendZuulResponse & removeRouteHost,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46639448/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com