当前位置:网站首页>【微服务|SCG】Predicate的使用
【微服务|SCG】Predicate的使用
2022-07-04 19:50:00 【步尔斯特】
文章目录
说白了 Predicate 就是为了实现一组匹配规则,方便让请求过来找到对应的 Route 进行处理,接下来我们接下 Spring Cloud GateWay 内置几种 Predicate 的使用。
通过时间匹配
Predicate 支持设置一个时间,在请求进行转发的时候,可以通过判断在这个时间之前、之后或之间进行转发。比如我们现在设置只有在 2022年 7月 5日才会转发到我的网站,在这之前不进行转发,我就可以这样配置:
spring:
cloud:
gateway:
routes:
- id: time_route
uri: http://issavior.com
predicates:
- After=2022-07-05T06:06:06+08:00[Asia/Shanghai]
Spring 是通过 ZonedDateTime 来对时间进行的对比,ZonedDateTime 是 Java 8 中日期时间功能里,用于表示带时区的日期与时间信息的类,ZonedDateTime 支持通过时区来设置时间,中国的时区是:Asia/Shanghai。
After Route Predicate 是指在这个时间之后的请求都转发到目标地址。上面的示例是指,请求时间在 2022年 7月 5日 6 点 6 分 6 秒之后的所有请求都转发到地址http://issavior.com。+08:00是指时间和 UTC 时间相差八个小时,时间地区为Asia/Shanghai。
添加完路由规则之后,访问地址http://localhost:8080会自动转发到http://issavior.com。
Before Route Predicate 刚好相反,在某个时间之前的请求的请求都进行转发。我们把上面路由规则中的 After 改为 Before,如下:
spring:
cloud:
gateway:
routes:
- id: after_route
uri: http:http://issavior.com
predicates:
- Before=2022-07-05T06:06:06+08:00[Asia/Shanghai]
就表示在这个时间之前可以进行路由,在这时间之后停止路由,修改完之后重启项目再次访问地址http://localhost:8080,页面会报 404 没有找到地址。
除过在时间之前或者之后外,Gateway 还支持限制路由请求在某一个时间段范围内,可以使用 Between Route Predicate 来实现。
spring:
cloud:
gateway:
routes:
- id: after_route
uri: http://issavior.com
predicates:
- Between=2022-07-05T06:06:06+08:00[Asia/Shanghai], 2022-07-09T06:06:06+08:00[Asia/Shanghai]
这样设置就意味着在这个时间段内可以匹配到此路由,超过这个时间段范围则不会进行匹配。通过时间匹配路由的功能很酷,可以用在限时抢购的一些场景中。
通过 Cookie 匹配
Cookie Route Predicate 可以接收两个参数,一个是 Cookie name , 一个是正则表达式,路由规则会通过获取对应的 Cookie name 值和正则表达式去匹配,如果匹配上就会执行路由,如果没有匹配上则不执行。
spring:
cloud:
gateway:
routes:
- id: cookie_route
uri: http://itsmdev.com
predicates:
- Cookie=issavior, cool
使用 curl 测试,命令行输入:
curl http://localhost:8080 --cookie “issavior=cool”
则会返回页面代码,如果去掉–cookie --cookie “issavior=cool”,后台汇报 404 错误。
Header Route Predicate 和 Cookie Route Predicate 一样,也是接收 2 个参数,一个 header 中属性名称和一个正则表达式,这个属性值和正则表达式匹配则执行。
spring:
cloud:
gateway:
routes:
- id: header_route
uri: http://itsmdev.com
predicates:
- Header=X-Request-Id, \d+
使用 curl 测试,命令行输入:
curl http://localhost:8080 -H “X-Request-Id:666666”
则返回页面代码证明匹配成功。将参数-H "X-Request-Id:666666"改为-H "X-Request-Id:neo"再次执行时返回 404 证明没有匹配。
通过 Host 匹配
Host Route Predicate 接收一组参数,一组匹配的域名列表,这个模板是一个 ant 分隔的模板,用.号作为分隔符。它通过参数中的主机地址作为匹配规则。
spring:
cloud:
gateway:
routes:
- id: host_route
uri: http://itsmdev.com
predicates:
- Host=**itsmdev.com
使用 curl 测试,命令行输入:
curl http://localhost:8080 -H “Host: www.itsmdev.com”
curl http://localhost:8080 -H “Host: mditsmdev.com”
经测试以上两种 host 均可匹配到 host_route 路由,去掉 host 参数则会报 404 错误。
通过请求方式匹配
可以通过是 POST、GET、PUT、DELETE 等不同的请求方式来进行路由。
spring:
cloud:
gateway:
routes:
- id: method_route
uri: http://itsmdev.com
predicates:
- Method=GET
使用 curl 测试,命令行输入:
#curl 默认是以 GET 的方式去请求
curl http://localhost:8080
测试返回页面代码,证明匹配到路由,我们再以 POST 的方式请求测试。
#curl 默认是以 GET 的方式去请求
curl -X POST http://localhost:8080
返回 404 没有找到,证明没有匹配上路由
通过请求路径匹配
Path Route Predicate 接收一个匹配路径的参数来判断是否走路由。
spring:
cloud:
gateway:
routes:
- id: host_route
uri: http://itsmdev.com
predicates:
- Path=/foo/{
segment}
如果请求路径符合要求,则此路由将匹配,例如:/foo/1 或者 /foo/bar。
使用 curl 测试,命令行输入:
curl http://localhost:8080/foo/1
curl http://localhost:8080/foo/xx
curl http://localhost:8080/boo/xx
经过测试第一和第二条命令可以正常获取到页面返回值,最后一个命令报 404,证明路由是通过指定路由来匹配。
通过请求参数匹配
Query Route Predicate 支持传入两个参数,一个是属性名一个为属性值,属性值可以是正则表达式。
spring:
cloud:
gateway:
routes:
- id: query_route
uri: http://itsmdev.com
predicates:
- Query=smile
这样配置,只要请求中包含 smile 属性的参数即可匹配路由。
使用 curl 测试,命令行输入:
curl localhost:8080?smile=x&id=2
经过测试发现只要请求汇总带有 smile 参数即会匹配路由,不带 smile 参数则不会匹配。
还可以将 Query 的值以键值对的方式进行配置,这样在请求过来时会对属性值和正则进行匹配,匹配上才会走路由。
spring:
cloud:
gateway:
routes:
- id: query_route
uri: http://itsmdev.com
predicates:
- Query=keep, pu.
这样只要当请求中包含 keep 属性并且参数值是以 pu 开头的长度为三位的字符串才会进行匹配和路由。
使用 curl 测试,命令行输入:
curl localhost:8080?keep=pub
测试可以返回页面代码,将 keep 的属性值改为 pubx 再次访问就会报 404, 证明路由需要匹配正则表达式才会进行路由。
通过请求 ip 地址进行匹配
Predicate 也支持通过设置某个 ip 区间号段的请求才会路由,RemoteAddr Route Predicate 接受 cidr 符号 (IPv4 或 IPv6) 字符串的列表(最小大小为 1),例如 192.168.0.1/16 (其中 192.168.0.1 是 IP 地址,16 是子网掩码)。
spring:
cloud:
gateway:
routes:
- id: remoteaddr_route
uri: http://itsmdev.com
predicates:
- RemoteAddr=192.168.1.1/24
可以将此地址设置为本机的 ip 地址进行测试。
结果请求的远程地址是 192.168.1.10,则此路由将匹配。
权重路由
This route would forward ~80% of traffic to weighthigh.org and ~20% of traffic to weighlow.org。
spring:
cloud:
gateway:
routes:
- id: weight_high
uri: https://weighthigh.org
predicates:
- Weight=group1, 8
- id: weight_low
uri: https://weightlow.org
predicates:
- Weight=group1, 2
The XForwarded Remote Addr Route Predicate Factory
This route matches if the X-Forwarded-For header contains, for example, 192.168.1.10。
spring:
cloud:
gateway:
routes:
- id: xforwarded_remoteaddr_route
uri: https://example.org
predicates:
- XForwardedRemoteAddr=192.168.1.1/24
组合使用
上面为了演示各个 Predicate 的使用,我们是单个单个进行配置测试,其实可以将各种 Predicate 组合起来一起使用。
例如:
spring:
cloud:
gateway:
routes:
- id: host_foo_path_headers_to_httpbin
uri: http://itsmdev.com
predicates:
- Host=**.foo.org
- Path=/headers
- Method=GET
- Header=X-Request-Id, \d+
- Query=foo, ba.
- Query=baz
- Cookie=chocolate, ch.p
- After=2022-1-01T06:06:06+08:00[Asia/Shanghai]
各种 Predicates 同时存在于同一个路由时,请求必须同时满足所有的条件才被这个路由匹配。
一个请求满足多个路由的谓词条件时,请求只会被首个成功匹配的路由转发。
边栏推荐
- What if the WiFi of win11 system always drops? Solution of WiFi total drop in win11 system
- LeetCode 8. String conversion integer (ATOI)
- 网件r7000梅林系统虚拟内存创建失败,提示USB磁盘读写速度不满足要求解决办法,有需要创建虚拟内存吗??
- go笔记(1)go语言介绍以及特点
- 实战模拟│JWT 登录认证
- 语义化标签的优势和块级行内元素
- 左右最值最大差问题
- 黄金k线图中的三角形有几种?
- Jiuqi ny8b062d MCU specification /datasheet
- Go notes (3) usage of go language FMT package
猜你喜欢
科普达人丨一文看懂阿里云的秘密武器“神龙架构”
接口設計時的一些建議
WinCC7.5 SP1如何通过交叉索引来寻找变量及其位置?
RFID仓储管理系统解决方案的优点
What if the win11 shared file cannot be opened? The solution of win11 shared file cannot be opened
二叉树的四种遍历方式以及中序后序、前序中序、前序后序、层序创建二叉树【专为力扣刷题而打造】
Win11系统wifi总掉线怎么办?Win11系统wifi总掉线的解决方法
五子棋 上班摸鱼工具 可局域网/人机
电脑怎么保存网页到桌面上使用
分析伦敦银走势图的技巧
随机推荐
测试用例 (TC)
Sword finger offer II 80-100 (continuous update)
企业数字化转型最佳实践案例:基于云的数字化平台系统安全措施简介与参考
Function analysis and source code of hash guessing game system development
Vue cleans up the keepalive cache scheme in a timely manner
Go language notes (4) go common management commands
What are the functional modules of RFID warehouse management system solution
Idea plug-in
卷积神经网络在深度学习中新发展的5篇论文推荐
测试员的算法面试题-找众数
What if the computer page cannot be full screen? The solution of win11 page cannot be full screen
Advantages of semantic tags and block level inline elements
Understand the reading, writing and creation of files in go language
Pytorch---使用Pytorch实现LinkNet进行语义分割
Leetcode+ 81 - 85 monotone stack topic
字节测试工程师十年经验直击UI 自动化测试痛点
Practice examples to understand JS strong cache negotiation cache
ACM组合计数入门
mysql语句执行详解
How does win11 search for wireless displays? Win11 method of finding wireless display device