Is it possible to use the Hibernate validator API storing the validated object in a field with an annotation? For example, I would like to validate Email address by calling a Java method instead of putting an @Email annotation on a Java bean property.
Is it possible to use the Hibernate validator API storing the validated object in
Share
Yes, it is possible. Try Something like,
Take a look at here.