|
I'm seeing this with ORM master. Adding
configurationValues.put( AvailableSettings.VALIDATION_FACTORY, this.validatorFactory )
to processProperties() in EntityManagerFactoryBuilderImpl fixes the problem. Steve Ebersole mentioned that the underlying issue is that org.hibernate.cfg.beanvalidation.TypeSafeActivator#activate looks for the ValidatorFactory in properties (i.e., 'configurationValues'). He's okay with just adding the ValidatorFactory to configurationValues for now. I'll submit a pull request with this fix.
|