Say I have validation on a field like this:
@NotEmpty @Digits(integer = 3, fraction = 0) private String code; Using Spring MVC and Hibernate validation currently I get both messages if I leave the form field blank. Is there a way to only display the @NotEmpty message?