03 2023 档案
摘要:@Validated & @Pattern pubic class User{ @NotNull @ApiModelProperty("开始时间") @Pattern(regexp = "\\d{13}") private String startTime; @NotNull @ApiModelPr
阅读全文
摘要:@NotEmpty 用在集合类上面加了@NotEmpty的String类、Collection、Map、数组,是不能为null或者长度为0的(String Collection Map的isEmpty()方法) @NotBlank只用于String,不能为null且trim()之后size>0 @N
阅读全文