Hi,
I want to ask is it possible to set explicitly the validation order in Spring. I mean, I have this command object:
public class UserData {
@NotBlank
private String newPassword;
@NotBlank
private String confirmPassword;
@Email(applyIf="email is not blank")
@NotBlank
private String email;
@NotBlank
private String firstName = "";
private String middleName = "";
@NotBlank
private String lastName = "";
// getters/setters
}
and I display my error messages on top of the page like this:
<spring:hasBindErrors name="${userData}">
<ul class="errors">
<c:forEach items="${errors.allErrors}" var="error">
<li><spring:message message="${error}"/></li>
</c:forEach>
</ul>
</spring:hasBindErrors>
The problem is no matter what my error messages are displayed in the following order:
* Fill you last name. * Fill you password. * Fill your emailaddress. * Fill you password again. * Select your gender. * Fill your first name.
It is not random, because this order is preserved every time. It is not alphabetical, or any other order... I am really stuck. Can someone help please?