如何在ApiParam

时间:2018-07-04 06:15:09

标签: swagger-ui springfox

我使用springfox-swagger2自动生成api doc,我想描述一个请求参数,请参见下文

@ApiParam(value="功能ID", required = true) Integer funcId,

但它变为主体,请​​参见下文 enter image description here

实际上卷曲是

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结合可以解决此问题,但是我想知道是否存在其他某种方式可以实现此目的?

0 个答案:

没有答案