测试springboot restcontroller使用postman消耗json和可选文件

时间:2017-10-18 09:36:14

标签: json spring-boot postman

我的控制器中有一个休息端点,就像这样..

{
  "query": {
    "bool": {
      "should": [
        {
          "term": {
            "uuid.keyword": 1
          }
        },
        {
          "term": {
            "uuid.keyword": 2
          }
        }
      ]
    }
  },
  "aggs": {
    "uuids": {
      "terms": {
        "field": "uuid.keyword"
      },
      "aggs": {
        "latest": {
          "top_hits": {
            "size": 1,
            "sort": {
              "timestamp": "desc"
            }
          }
        }
      }
    }
  }
}

我如何使用邮递员和卷发来测试这个?我需要发送带有或不带文件的json foo。提前谢谢。

1 个答案:

答案 0 :(得分:0)

你可以像@PostMapping("/createFoo")

那样缩短它

首先指定邮递员要求的邮政和网址 选择正文部分

下的表单数据

单击键输入区域并将文本更改为文件

此外,参数名称必须与表格数据变量

相同

附上示例 postman request with file