带有swagger ui的@RequestParam注释方法没有显示描述

时间:2016-02-15 04:00:33

标签: java rest spring-boot swagger-ui

我正在尝试塑造Swagger-UI,以便不仅修改“name”字段,还修改API输入参数的“Description”字段。这里有一个例子,有人似乎成功地使用了@ApiParam和@RequestParam:[link]

我到目前为止最接近修改描述字段的是以下内容,其中我在@RequestParam输入上单独使用了“value”字段:

enter image description here

但是,每当我尝试在单个输入元素上同时使用@ApiParam和@RequestParam注释实现相同的结构时,如上面其他用户的示例所示,我收到以下错误:

enter image description here

知道我在这里注释的错误吗?这是不能在@RequestMapping带注释的API上完成的?

1 个答案:

答案 0 :(得分:2)

您在, @ApiParamvalue属性之间缺少name

@ApiParam(value="Use GET...", name="schoolId")