Spring-Boot How to properly inject javax.validation.Validator

You need to declare a bean of type LocalValidatorFactoryBean like this:

<bean id="validator"
    class="org.springframework.validation.beanvalidation.LocalValidatorFactoryBean"/>

in XML or

@Bean
public javax.validation.Validator localValidatorFactoryBean() {
   return new LocalValidatorFactoryBean();
}

in Java Config.

Edit:

It is important to understand that if JPA is being used and is backed by Hibernate, then Hibernate will try to automatically validate your Beans as well as the Spring Framework. This can lead to the problem of javax.validation.ValidationException: HV000064: Unable to instantiate ConstraintValidator because Hibernate doesn’t know about the Spring Context and as far as I can tell there is no way to tell it, not even with the LocalValidatorFactoryBean. This causes the Validator’s to run twice. One correctly, and once that fails.

In order to disable the default Hibernate ORM validation, the following property for Spring needs to be set:

spring.jpa.properties.javax.persistence.validation.mode=none

I updated this example, because it was the one I kept finding over and over again about the Validator’s not being injected, and it turns out this was the problem I faced.

This part of the Spring documentation has all the details

Leave a Comment