I would like to have a different message for a Constraints validator but i am wandering how to do.... example
@Constraints.Required @Constraints.Pattern(\"\\
As you wrote, you can use
@Constraints.Required(message = "This is field required") @Constraints.Pattern(value = "\\d{1,6}", message = "This field must contain from 1 to 6 digits") public String thisIsAnInt;