我使用springfox-swagger2
自动生成api doc,我想描述一个请求参数,请参见下文
@ApiParam(value="功能ID", required = true) Integer funcId,
实际上卷曲是
curl -X POST --header 'Content-Type: application/json' --header 'Accept: application/json' -d '1' 'http://localhost:8081/foo/bar?industryId=1&customerId=1'
如何让funcId
参数类型保留query
?
我知道将@RequestParam与@ApiParam结合可以解决此问题,但是我想知道是否存在其他某种方式可以实现此目的?