I am currently working on Spring MVC web app and trying to hook up validation using the @Valid annotation. When I fire up the application I'm getting the following exception:

javax.validation.ValidationException: Unable to find a default provider

I have Hibernate Validator 3.1.0.GA on the classpath as well as javax validation 1.0.0.GA, Hibernate Core 3.3.1.GA and Hibernate Annotations 3.4.0.GA.

Is there an incompatiblity in those versions that I'm not seeing, or can anyone think of any reason why I'm still getting this exception with Hibernate Validator on the class path?

Cheers,

Caps

link|improve this question

feedback

2 Answers

up vote 8 down vote accepted

Hibernate Validator 3.1 is not a JSR303 provider. You need to upgrade to Hibernate Validator 4 or later.

link|improve this answer
Thanks for your help. I'll give it a go! – Caps Oct 20 '10 at 23:41
@Affe, thanks a million! – forker Jan 24 at 15:49
feedback

See this answer : http://stackoverflow.com/a/3989936/325742

To fix, Add this maven dependency Hibernate Validator Annotation Processor.

<dependency>
  <groupId>org.hibernate</groupId>
  <artifactId>hibernate-validator-annotation-processor</artifactId>
  <version>4.1.0.Final</version>
</dependency>

That's the latest stable version of that artifact, as seen from here

link|improve this answer
When I add that dependency my javax.validation.ValidationException: Unable to find default provider go's away, but the following exception occurs: java.lang.ClassNotFoundException: org.postgresql.Driver. – Just me myself and I May 10 at 9:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.