学科分类
目录
Spring Cloud

禁用Zuul过滤器

Spring Cloud默认为Zuul编写并启动了一些过滤器,例如DebugFilter、FormBodyWrapperFilter、PreDecorationFilter等,这些过滤器都会存放在spring-cloud-netflix-core这个Jar包的org.springframework.cloud.netflix.zuul.filters包中。

在一些情况下,我们需要禁用掉部分过滤器,只需设置zuul.<SimpleClassName>.<filterType>.disable=true,就可以禁用SimpleClassName所对应的过滤器。以过滤器org.springframework.cloud.netflix.zuul.filters.post.SentResponseFilter为例,只需要设置zuul.SendResponseFilter.pre.disable=true就可以了。

点击此处
隐藏目录