如何用实际示例替换模型模式Body参数

时间:2015-10-14 19:01:41

标签: swagger-ui swagger-2.0 springfox

我有spring-boot / spring-mvc和springfox swagger2集成。我附上了样本截图。在' body'的参数类型中我有一个描述元素数据类型的Model模式。字符串,0等!如何将其替换为实际示例,以便我可以“尝试一下”' 。这对我的API使用者更有用。

enter image description here

1 个答案:

答案 0 :(得分:2)

不确定你是否找到了这个的答案,但无论如何我都会回答这个问题。

@ApiModelProperty有一个名为example的属性。你可以利用它。

@ApiModelProperty(value="name of the user", required=true, example="John")

Swagger