I am new to using hibernate validator. I just want to know if there is a way to stop further validations when I get the first violation. For example consider my case below.
public class CustomerDetails {
@NotNull
@Size(min=10, max=10)
private String CustomerID;
@NotNull
private String customerName;
@NotNull
@Pattern([0-9]*)
private String phoneNumber;
}
What I want to accomplish, is to make the validator to stop validating the other fields if the first field "CustomerID" itself is invalid. If the customerID is valid, we proceed to validate the next field customerName. In case that is not valid, the validator must stop there and not validate further. What I am concerned about is the performance. If my bean under test has 100 fields, will it not impact performance to validate all the 100 if the first one itself is not valid and I can display only one error to my end user?