java swagger示例字符串发布正文

时间:2018-10-31 17:33:58

标签: java spring spring-boot web swagger

我正在大张旗鼓地记录一个项目,但我遇到了问题。我有很多使用“ @RequestBody String json”的方法,我通过String接收了邮件正文。

我想显示我期望的字符串的“示例”:

@ApiOperation(value = "Lista os riscos de um paciente.")
@RequestMapping(value = "/pacienteRiscoFiltro/{token}", method = RequestMethod.POST, consumes = { "text/plain" })
public RetornoPaginadoDTO postPacienteRiscoFiltro(
        @ApiParam("Body of post") @RequestBody String json) {
    //... code of method
}

Image example

我想将“字符串”更改为任何其他文本。

有人知道我该怎么做?

1 个答案:

答案 0 :(得分:0)

您是否尝试过类似的操作:@ApiOperation(value = "Save user details", response = User.class)

Api Operation example image

如果您愿意,可以在https://sdngeeks.wordpress.com/2014/08/01/swagger-example-with-java-spring-apache-cxf-jackson/上获得更多详细信息

最好的问候。