我正在为以下输入编写JSR验证。
@JsonProperty(value = "state")
@NotEmpty
private String state;
@JsonProperty(value = "zipValue")
@NotEmpty
@Zip
private String zip;
@JsonProperty(value = "countryName")
@NotEmpty
@CountryAddress
private String countryName;
我从2个国家/地区获得了投入。因此国家的州名单和邮政编码格式是不同的。我想在CountryAddress注释本身中验证zip和state。有人可以帮我这个。?