我正在为以下输入编写 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 注释本身中验证邮政编码和州。有人可以帮我解决这个问题吗?