我在Spring Cloud Gateway中创建了一个自定义过滤器,通过使用"LoggingGlobalPreFilter";
我有以下路线。
return builder.routes().route(r -> r.path("/first/**").uri("http://localhost:8222"))
.route(r -> r.path("/seconf/**").uri("http://localhost:8333")).build();
不知道如何在那里添加自定义筛选器。互联网上所有的文章都在谈论在.yml文件中配置过滤器。
谢谢!
@Component
public class CustomFilter implements GlobalFilter, Ordered {
}