Spring 3.0.2
Hibernate 3.5.0
Hibernate-Validator 4.0.2.GA
I am trying to inject Spring dependencies into a ConstraintValidator using:
I have configured the application context with:Code:@PersistenceContext private EntityManager entityManager;
Which, according to the Spring documentation, should allow “custom ConstraintValidators to benefit from dependency injection like any other Spring bean”Code:<bean id="validator" class="org.springframework.validation.beanvalidation.LocalValidatorFactoryBean"/>
Within the debugger I can see Spring calling getBean to create the ConstraintValidator. Later when flush triggers the preInsert, a different ConstraintValidator is created and called. The problem is the EntityManager is null within this new ConstraintValidator. I’ve tried injecting other dependencies within the ConstraintValidator and these are always null.
Does anyone know if it is possible to inject dependencies into a ConstraintValidator?


Reply With Quote
