I would like to have a different message for a Constraints validator but i am wandering how to do.... example
@Constraints.Required
@Constraints.Pattern("\\d{1,6}")
public String thisIsAnInt;
I would like something
@Constraints.Required
@Constraints.Pattern(message="ThisismyspecificMessage",value=\\d{1,6}")
public String thisIsAnInt;
For showing it properly using the bootstrap in a form.
It is possible? thanks a lot
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;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With