@PostMapping(value = "/xxx/xxxx")
public ResponseData<Boolean> xxxx(@RequestBody XxxBeanParam param) {
//code...
return ResponseData.success(xxxService.xxx(param));
}
在@RequestBody
约定的XxxBeanParam
对象中包含了三个字段:aaaaa=String
,bbbbb=List
,ccccc=Integer
使用post请求,请求接口API:http://localhost:3000/api/v1/test/xxx/xxxx
使用postman
或者apiofox
测试的话,需要选择post
请求方式,请求数据块内选择raw
,最后将请求报文json
拷贝进入即可。
请求报文示例:
{
"aaaaaaa": "e76ac15759da42f6bab8dad2fb195d76",
"bbbbbbb": [
"ffb2fbd7e60345a4b9d81677fa2d0f9c"
],
"ccccccc":9527
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)