Swagger如何显示模型中的所有字段,但只显示示例值中的某些字段(SpringBoot项目)

时间:2018-06-06 14:54:25

标签: swagger swagger-ui

我正在使用Swagger for API文档。我正在尝试减少请求正文中的字段数,但是在模型中可以看到所有字段。

我搜索了所有相关问题但找不到解决方法。我试过Hiding fields in Example Value but not in Model of Request Body in Swagger UI它使用YAML,但我似乎无法找到一个解决方案,如何使用springboot项目中的注释使其工作。

@Examples也不行。我试过了:

@ApiImplicitParam(name = "U Input", dataType = "UInput", paramType = "body", 
examples = @Example(value = {@ExampleProperty(mediaType = 
"application/json", value = "{foo: whatever, bar: whatever2}")})

0 个答案:

没有答案