Springfox Bean验证@Size注释在列表上无法正常工作

来源:爱站网时间:2021-09-16编辑:网友分享
[我正在使用springfox bean验证器将字段限制信息提取到生成的swagger json文件中,这是我使用的方式:@ApiModelProperty(“ str1”)@Size(min = 1,max = 200,消息...] >

问题描述


我正在使用springfox bean验证程序将字段限制信息提取到生成的swagger json文件中,这是我使用的方式:

    @ApiModelProperty("str1")
    @Size(min = 1, max = 200, message = "length 1-200")
    private String str1;

    @ApiModelProperty("list1")
    @Size(min = 1, max = 100, message = "size 1-100")
    private List list1;

在生成的json文件中:

str1:- {
  type: "string",
  description: "str1",
  allowEmptyValue: false,
  minLength: 1,
  maxLength: 200
},
list1:- {
  type: "array",
  description: "list1",
  allowEmptyValue: false,
  items:- {
    type: "string"
  }
}

[@Size批注在List上无法正常使用

思路:


这是springfox尚不支持的问题。我已经修改了代码,提交的代码已合并。预计将在3.0版中发布。pull request link

上一篇:使用Asynctask在Android中显示ProgressBar

下一篇:javaFX中是否有等效的enum属性类型?

您可能感兴趣的文章

相关阅读

热门软件源码

最新软件源码下载