Spring Boot昂首阔步ApiModel用于第三方类

时间:2019-07-17 11:27:13

标签: java api spring-boot swagger

有最新的春季靴子,招摇和行家。有一个简单的REST控制器:

@ApiOperation(value = "Simple controller")
@GetMapping("/resource/{id}")
public Money findMoney(@PathVariable String id) {
    return moneyService.findMoneyById(id);
}

金钱是我无法改变的外部课程。但我不想显示其所有字段。我也想在必填字段中添加一些详细信息。我想要类似的东西:

@ApiModel(description = "Money model")
public class Money {
    @ApiModelProperty(notes = "Just ignore it, hidden = true)
    private String notImportantProperty;
    @ApiModelProperty(notes = "Currency")
    private String currency;
etc...

}

0 个答案:

没有答案