Kong 网关 | Route
程序员文章站
2022-03-03 20:41:37
...
一、简介
路由用来匹配客户端向上游服务器请求的规则,也就是客户端调用的 API,每个路由(Route)和一个服务(Service) 相关联,一个服务可有有多个路由,我们可以对每一条路由进行细粒度的配置,可以使用正则表达式进行通用的配置。
二、重要属性
创建一个路由需要配置的属性,其中路径 paths 为必须设置,其余为可选。
Attributes | Description |
---|---|
name | 路由名称 |
protocols | 可以请求该路由的协议,默认为 [“http”, “https”] |
methods | 方法,如 GET,POST,DELETE,PATCH,PUT |
hosts | 匹配此路由的域名列表,可设置多个值 |
paths | 匹配此路由的路径,也就是 API,可以设置多个值 |
regex_priority | 路由请求的优先级,数字越大的在数字越小的之前匹配,默认为0 |
strip_path | 当通过一条路径进行请求时,从上游中去掉匹配的前缀,默认为 true,如果上游的路径和配置的请求路径或者前缀一样,配置路由时需要配置为 false。 |
三、操作示例
1、创建路由
POST /services/{service name or id}/routes
curl -i -X POST \
--url http://localhost:8001/services/myservice/routes \
--data 'hosts[]=gateway.com' \
--data 'name=getBlackRoles' \
--data 'strip_path=false' \
--data 'paths[]=/blackRoles'\
--data 'methods[]=GET&methods[]=POST' \
2、查询路由
查询所有路由
GET /routes
curl -i -X GET \
--url http://localhost:8001/routes \
查询某个服务的路由
GET /services/{service name or id}/routes
curl -i -X GET \
--url http://localhost:8001/services/myservice/routes \
3、搜索路由
根据路由名称或 id 搜索
GET /routes/{route name or id}
curl -i -X GET \
--url http://localhost:8001/routes/getBlackRoles \
搜索特定服务的路由
GET /services/{service name or id}/routes/{route name or id}
curl -i -X GET \
--url http://localhost:8001/services/myservice/routes/getBlackRoles \
4、更新路由
根据路由 ID 或名称更新路由
PATCH /routes/{route name or id}
curl -i -X PATCH \
--url http://localhost:8001/routes/getBlackRoles \
--data 'hosts[]=gateway.com' \
--data 'name=getBlackRole' \
--data 'strip_path=false' \
--data 'paths[]=/blackRoles'\
--data 'methods[]=GET&methods[]=POST' \
更新指定服务的路由
PATCH /services/{service name or id}/routes/{route name or id}
curl -i -X PATCH \
--url http://localhost:8001/services/myservice/routes/getBlackRole \
--data 'hosts[]=gateway.com' \
--data 'name=getBlackRoles' \
--data 'strip_path=false' \
--data 'paths[]=/blackRoles'\
--data 'methods[]=GET&methods[]=POST' \
5、更新或创建路由
根据路由名称或 ID 更新
PUT /routes/{route name or id}
curl -i -X PUT \
--url http://localhost:8001/routes/getBlackRoles \
--data 'hosts[]=gateway.com' \
--data 'name=getBlackRoles' \
--data 'strip_path=false' \
--data 'paths[]=/blackRoles'\
--data 'methods[]=GET&methods[]=POST' \
更新指定服务的路由
PUT /services/{service name or id}/routes/{route name or id}
curl -i -X PUT \
--url http://localhost:8001/services/myservice/routes/getBlackRoles \
--data 'hosts[]=gateway.com' \
--data 'name=getBlackRoles' \
--data 'strip_path=false' \
--data 'paths[]=/blackRoles'\
--data 'methods[]=GET&methods[]=POST' \
6、删除路由
根据路由ID或名称删除路由
DELETE /routes/{route name or id}
curl -i -X DELETE \
--url http://localhost:8001/routes/getBlackRoles \
删除指定服务的路由
DELETE /services/{service name or id}/routes/{route name or id}
curl -i -X DELETE \
--url http://localhost:8001/services/myservice/routes/getBlackRoles \
相关资料
Kong官方文档(路由) :https://docs.konghq.com/1.4.x/admin-api/#route-object
ABOUT
我的 Github:Github
CSDN: CSDN
个人网站: sirius blog
E-mail: 1136513099qq.com
下一篇: js写一个route路由
推荐阅读
-
AngularJS通过ng-route实现基本的路由功能实例详解
-
AngularJS基于ui-route实现深层路由的方法【路由嵌套】
-
Linux命令行修改IP、网关、DNS的方法
-
使用vue-route 的 beforeEach 实现导航守卫(路由跳转前验证登录)功能
-
centos下kong源码安装
-
Vue组件和Route的生命周期实例详解
-
Spring Cloud系列-Zuul网关集成JWT身份验证
-
Python的Flask框架中@app.route的用法教程
-
远程连接mysql很慢,但是本地连接mysql却很快,ping和route网络通信都是正常的怎么办?
-
SpringCloud+Eureka+Feign+Ribbon的简化搭建流程,加入熔断,网关和Redis缓存[2]