JSR因变量的验证

时间:2015-02-20 08:30:42

标签: java validation hibernate-validator jsr

我正在为以下输入编写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。有人可以帮我这个。?

1 个答案:

答案 0 :(得分:0)

您可以使用类级别约束来验证表单的字段组合。只需引入一个新的验证并将其分配给类而不是字段。

请参阅herehere