FlyBird Restful 是一个提供 Restful 风格 json 格式读写 MySQL 数据的小工具。
本工具从某 MySQL GUI 管理工具提取出的核心部分,做了精简,只支持指定数据库 CURD 操作。
一个数据表对应 restful 接口的一个资源。
支持复杂查询条件, 如:is between ,does not contain 等。具体见仓库文档
支持原生 SQL Query,Execute 。(详见文档,本文只阐述 restful 使用)
put 和 post body 体为 json 格式
下载 binary 执行包,直接运行, 支持 Linux, Windows, MacOS 。
支持 Docker 和 k8s 云平台(如微信云平台),image 地址:youwen21/flybird-restful
要求表主键名为 ID
parameters
parameter | type | default |
---|---|---|
page | int | 1 |
psize | int | 20 |
orderBy | int | - |
orderDirect | int | - |
GET {{host}}/restful/:tableName?page=2&psize=10&orderBy="id"&orderDirect="asc"
GET {{host}}/restful/:tableName/:id
PUT {{host}}/restful/:tableName/
{
"params":{
"key1":"value1",
"key2":"value2"
}
}
POST {{host}}/restful/:tableName/:id
{
"params":{
"key1":"value1",
"key2":"value2"
}
}
DELETE {{host}}/restful/:tableName/:id
https://github.com/youwen21/flybird-restful
Have fun