Gateway 常用的 Predicate
上面用的path 只是predicate 中的一个,只要使predicates为true 就访问,false不访问。Route PredicateFactoriesSpringCloud Gateway将路由匹配作为Spring WebFlux HandlerMapping基础架构的一部分。SpringCloud Gateway包括许多内置的RoutePredicate工厂。所有这些P...
上面用的path 只是predicate 中的一个,只要使predicates为true 就访问,false不访问。
Route PredicateFactories
SpringCloud Gateway将路由匹配作为Spring WebFlux HandlerMapping基础架构的一部分。
SpringCloud Gateway包括许多内置的RoutePredicate工厂。所有这些Predicate都与HTTP请求的不同属性匹配。多个Route Predicate工厂可以进行组合。
SpringCloud Gateway创建Route对象时,使用RoutePredicateFactory创建Predicate对象,Predicate对象可以赋值给Route。SpringCloud Gateway包括许多内置的Route Predicate Factories。
所有这些谓词都匹配HTTP请求的不同属性。多种谓词工厂可以组合,并通过逻辑and。
有哪几种?
After、Before、Between
yml 配置
但这是美国时间,需要转成亚洲时间,转换:
替换成这个时间,并往后调一小时
只有在这个点之后才能被访问,否则是false,不能访问。那我们来看一下访问情况
After是在时间之后,Before是在时间之前,Between是在之间,需要传两个时间,就不详细写了
Cookie
修改yml:
重启9527,使用curl 命令测试(curl是postman 图形化界面的命令)
启动 cmd命令界面
不带cookie访问:
404 not found不让访问,再来看带cookie:
这样,时间上匹配且带着cookie就能访问了。
Header
修改 yml
重启9527,使用curl 命令测试
Host
修改yml
重启,测试
Method
只有请求方法是GET方法才允许访问
Path
Query
修改ym
重启,测试
小总结
说白了,Predicate就是为了实现一组匹配规则,让请求过来找对应的Route进行处理。
更多推荐
所有评论(0)