2 Star 6 Fork 1

ParkJun/vertx4-reactive-template

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
postman.json 3.84 KB
一键复制 编辑 原始数据 按行查看 历史
yujuncai@126.com 提交于 2022-04-14 14:21 . init
{
"info": {
"_postman_id": "5cfc01d3-fd7d-4527-a2b9-825ad368ff80",
"name": "vertx-4-reactive-rest-api",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
},
"item": [
{
"name": "Read all books.",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "http://localhost:8888/api/v1/books?",
"protocol": "http",
"host": [
"localhost"
],
"port": "8888",
"path": [
"api",
"v1",
"books"
],
"query": [
{
"key": "page",
"value": "1",
"disabled": true
},
{
"key": "limit",
"value": "20",
"disabled": true
}
]
}
},
"response": []
},
{
"name": "Read one book.",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "http://localhost:8888/api/v1/books/1",
"protocol": "http",
"host": [
"localhost"
],
"port": "8888",
"path": [
"api",
"v1",
"books",
"1"
]
}
},
"response": []
},
{
"name": "Create book.",
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"name": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"author\": \"José Saramago\",\n \"country\": \"Portugal\",\n \"image_link\": \"images/ensaio-sobre-a-cegueira.jpg\",\n \"language\": \"Portuguese\",\n \"link\": \"https://en.wikipedia.org/wiki/Blindness_(novel)\",\n \"pages\": 288,\n \"title\": \"Ensaio sobre a cegueira\",\n \"year\": 1995\n }",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "http://localhost:8888/api/v1/books",
"protocol": "http",
"host": [
"localhost"
],
"port": "8888",
"path": [
"api",
"v1",
"books"
]
}
},
"response": []
},
{
"name": "Update book.",
"request": {
"method": "PUT",
"header": [
{
"key": "Content-Type",
"name": "Content-Type",
"type": "text",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"author\": \"José Saramago\",\n \"country\": \"Portugal\",\n \"image_link\": \"images/ensaio-sobre-a-cegueira.jpg\",\n \"language\": \"Portuguese\",\n \"link\": \"https://en.wikipedia.org/wiki/Blindness_(novel)\",\n \"pages\": 288,\n \"title\": \"Ensaio sobre a cegueira\",\n \"year\": 1995\n }",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "http://localhost:8888/api/v1/books/1",
"protocol": "http",
"host": [
"localhost"
],
"port": "8888",
"path": [
"api",
"v1",
"books",
"1"
]
}
},
"response": []
},
{
"name": "Delete book.",
"request": {
"method": "DELETE",
"header": [],
"url": {
"raw": "http://localhost:8888/api/v1/books/1",
"protocol": "http",
"host": [
"localhost"
],
"port": "8888",
"path": [
"api",
"v1",
"books",
"1"
]
}
},
"response": []
},
{
"name": "Read metrics.",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "http://localhost:8888/metrics",
"protocol": "http",
"host": [
"localhost"
],
"port": "8888",
"path": [
"metrics"
]
}
},
"response": []
},
{
"name": "Read health check.",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "http://localhost:8888/health",
"protocol": "http",
"host": [
"localhost"
],
"port": "8888",
"path": [
"health"
]
}
},
"response": []
}
],
"protocolProfileBehavior": {}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/ParkJun/vertx4-reactive-template.git
git@gitee.com:ParkJun/vertx4-reactive-template.git
ParkJun
vertx4-reactive-template
vertx4-reactive-template
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385