Reputation: 1
We are using eclipselink as our ORM layer, and when we tried using java-validation framework with Hibernate Validator as default factory, the validation doesn't work. We are hit by this bug http://goo.gl/hQfzG.
We are trying to find alternatives to validate the beans without using Hibernate Validator as default Validator Factory. Is there something that is available other than Hibernate Validator?
Btw, we are not using spring so thats out of question I guess.
Upvotes: 0
Views: 1442
Reputation: 80593
Not sure what you have against the reference implementation, but if you are dead set against it you can take a look at Apache Bean Validation. Afaik its the only other (complete) implementation to date.
Upvotes: 1