Possible Duplicate:
using Hibernate Validator without calling annotation.
I have this composite constraint annotation (only for illustration):
@Target... @Retention...
@Constraint(validatedBy = {})
@Pattern(regexp = PasswordComplexity.AT_LEAST_TWO_NONE_ALPAH_CHARS)
@Length(min = 6, max = 20)
public @interface PasswordComplexity {
...
}
And I use it in Spring Controllers and Entity Classes.
But now I need to check a single String in a Service method, where I need to apply the same constraint to a single String. Because of the fact that the constraint is the same, I want to use the same definition of the constraint (@PasswordComplexity) (single source of truth). Something like:
public void createUser(UserDto userDto, String password) {
if(hasViolation(validator.validate(password,PasswordComplexity.class))) {
throw new PasswordComplexityViolationException();
} else {
…
}
}
But I do not know how to run the JSR 303 Validator for an not annotated simple object (String). Is it at least possible, and how?
(I use Hibernate Validator as JSR 303 provider)
passwordproperty/field in yourUserDtoclass, right? But in your "something like" example you at least repeat the name of the annotation (PasswordComplexity). Isn't it a redundancy too? – Grzegorz Oledzki Jun 10 '11 at 9:08UserDto, populate itspasswordproperty and fire validation on the single property. Why isn't it an option for you? 1. Is it because you have other validation constraints and you would want to validate the@PasswordComplexityonly? 2. Or is more about not wanting to create a dumb instance ofUserDto? – Grzegorz Oledzki Jun 10 '11 at 11:07