@ApiOperation(value = "回调", notes = "回调")
@RequestMapping(value = "/notoken/sign/callback", method = RequestMethod.POST)
public ResponseEntity<?> callback(HttpServletRequest request) throws Exception {
return ResponseEntity.ok(request.getParameter("tenantId"));
}
请问我该如何用swagger向里面传值?如果是多个参数怎么传?
其原因是我fillter里面拦截并更改了请求体的数据。于是我在swagger里面插入的数据都被篡改了。
{"tenantId":"内容","字段1":"内容1"} 正常的json格式就行,看到代码中有这个request.getParameter("tenantId"),应该有个字段为tenantId
http://localhost:3019/signature/notoken/sign/callback?contractId=2994162374801478432&tenantId=690
使用postman可以正常传参。但是swagger死活不行。难道是不支持?
这个接口(API)不合格。。
不使用 ApiXxxDTO 接收参数吗?
返回 ResponseEntity<?> ?代表啥意思?
网上一大把文档,找找看