如何在Springfox的Swagger 2中为JSONObject请求主体自定义示例值?

时间:2019-02-17 23:10:31

标签: rest spring-boot swagger-ui swagger-2.0 springfox

我想为我使用Springfox的Swagger(Spring REST API)制作的API文档自定义示例值。enter image description here

由于请求正文是通过JQuery AJAX的字符串化JSON,因此@RequestParam是字符串。 我已经尝试了多个“解决方案”,包括@ApiModel@ApiImplicitParams,但都没有用。 "string"似乎从未改变。

如何更改示例值?我不介意是否需要手动完成。我只希望该区域显示JSON对象。

1 个答案:

答案 0 :(得分:1)

如果使用对象描述请求正文,则可以使用@ApiModelProperty,例如:

data class RequestBody(
    @ApiModelProperty(example = "John Doe")
    val name: String,
    @ApiModelProperty(example = "Coolstreet 1")
    val address: String
)

替代方法是使用@Example和@ExampleProperties,但我发现它们更加混乱。在官方参考文档中有一些如何使用它们的示例:http://springfox.github.io/springfox/docs/current/#example-application

提供的示例:

@RequestMapping(value = "/2031", method = RequestMethod.POST)
@ResponseBody
@ApiOperation(value = "/2031")
@ApiImplicitParams({
    @ApiImplicitParam(
        name = "contents",
        dataType = "CustomTypeFor2031",
        examples = @io.swagger.annotations.Example(
            value = {
                @ExampleProperty(value = "{'property': 'test'}", mediaType = "application/json")
            })) 
})
public void save(@PathVariable("keyId") String keyId,
                 @PathVariable("id") String id,
                 @RequestBody String contents 
) {
}

public static class CustomTypeFor2031 { 
  private String property;

  public String getProperty() {
    return property;
  }

  public void setProperty(String property) {
    this.property = property;
  }
}