I am looking for a sample code where a field is annotated with multiple validation annotations (JSR and custom). My requirement is that if validation for one annotation fails, the other annotations should not be triggered.
@NotNull
@Size(min=2, max=2)
@Attribute(value="OCC_TYP")
private String occupationType;
The @Attribute annotation is a custom validation which checks the value of the field with a column.
This @Attribute should only be triggered if other two validation fails. Right now, when I pass a value 'D' then the error message for size is displayed as well the error message for @Attribute is displayed.