fix ValidatorFactory2PhaseInjectionTest
This commit is contained in:
parent
7ce75e4080
commit
614d406e8c
|
@ -226,6 +226,14 @@ public final class SessionFactoryImpl implements SessionFactoryImplementor {
|
||||||
|
|
||||||
this.properties = new HashMap<>();
|
this.properties = new HashMap<>();
|
||||||
this.properties.putAll( serviceRegistry.getService( ConfigurationService.class ).getSettings() );
|
this.properties.putAll( serviceRegistry.getService( ConfigurationService.class ).getSettings() );
|
||||||
|
if ( !properties.containsKey( AvailableSettings.JPA_VALIDATION_FACTORY ) ) {
|
||||||
|
if ( getSessionFactoryOptions().getValidatorFactoryReference() != null ) {
|
||||||
|
properties.put(
|
||||||
|
AvailableSettings.JPA_VALIDATION_FACTORY,
|
||||||
|
getSessionFactoryOptions().getValidatorFactoryReference()
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
maskOutSensitiveInformation(this.properties);
|
maskOutSensitiveInformation(this.properties);
|
||||||
this.sqlFunctionRegistry = new SQLFunctionRegistry( jdbcServices.getJdbcEnvironment().getDialect(), options.getCustomSqlFunctionMap() );
|
this.sqlFunctionRegistry = new SQLFunctionRegistry( jdbcServices.getJdbcEnvironment().getDialect(), options.getCustomSqlFunctionMap() );
|
||||||
this.cacheAccess = this.serviceRegistry.getService( CacheImplementor.class );
|
this.cacheAccess = this.serviceRegistry.getService( CacheImplementor.class );
|
||||||
|
|
Loading…
Reference in New Issue