HHH-12508 : SessionFactoryOptions#isSecondLevelCacheEnabled returns true by default with NoCachingRegionFactory
This commit is contained in:
parent
c2d98d78ea
commit
75c2a6d619
|
@ -37,6 +37,7 @@ import org.hibernate.boot.registry.selector.spi.StrategySelector;
|
||||||
import org.hibernate.boot.spi.MetadataImplementor;
|
import org.hibernate.boot.spi.MetadataImplementor;
|
||||||
import org.hibernate.boot.spi.SessionFactoryBuilderImplementor;
|
import org.hibernate.boot.spi.SessionFactoryBuilderImplementor;
|
||||||
import org.hibernate.boot.spi.SessionFactoryOptions;
|
import org.hibernate.boot.spi.SessionFactoryOptions;
|
||||||
|
import org.hibernate.cache.internal.NoCachingRegionFactory;
|
||||||
import org.hibernate.cache.internal.StandardQueryCacheFactory;
|
import org.hibernate.cache.internal.StandardQueryCacheFactory;
|
||||||
import org.hibernate.cache.spi.QueryCacheFactory;
|
import org.hibernate.cache.spi.QueryCacheFactory;
|
||||||
import org.hibernate.cache.spi.RegionFactory;
|
import org.hibernate.cache.spi.RegionFactory;
|
||||||
|
@ -684,6 +685,8 @@ public class SessionFactoryBuilderImpl implements SessionFactoryBuilderImplement
|
||||||
this.procedureParameterNullPassingEnabled = cfgService.getSetting( PROCEDURE_NULL_PARAM_PASSING, BOOLEAN, false );
|
this.procedureParameterNullPassingEnabled = cfgService.getSetting( PROCEDURE_NULL_PARAM_PASSING, BOOLEAN, false );
|
||||||
this.collectionJoinSubqueryRewriteEnabled = cfgService.getSetting( COLLECTION_JOIN_SUBQUERY, BOOLEAN, true );
|
this.collectionJoinSubqueryRewriteEnabled = cfgService.getSetting( COLLECTION_JOIN_SUBQUERY, BOOLEAN, true );
|
||||||
|
|
||||||
|
final RegionFactory regionFactory = serviceRegistry.getService( RegionFactory.class );
|
||||||
|
if ( !NoCachingRegionFactory.class.isInstance( regionFactory ) ) {
|
||||||
this.secondLevelCacheEnabled = cfgService.getSetting( USE_SECOND_LEVEL_CACHE, BOOLEAN, true );
|
this.secondLevelCacheEnabled = cfgService.getSetting( USE_SECOND_LEVEL_CACHE, BOOLEAN, true );
|
||||||
this.queryCacheEnabled = cfgService.getSetting( USE_QUERY_CACHE, BOOLEAN, false );
|
this.queryCacheEnabled = cfgService.getSetting( USE_QUERY_CACHE, BOOLEAN, false );
|
||||||
this.queryCacheFactory = strategySelector.resolveDefaultableStrategy(
|
this.queryCacheFactory = strategySelector.resolveDefaultableStrategy(
|
||||||
|
@ -698,11 +701,26 @@ public class SessionFactoryBuilderImpl implements SessionFactoryBuilderImplement
|
||||||
this.minimalPutsEnabled = cfgService.getSetting(
|
this.minimalPutsEnabled = cfgService.getSetting(
|
||||||
USE_MINIMAL_PUTS,
|
USE_MINIMAL_PUTS,
|
||||||
BOOLEAN,
|
BOOLEAN,
|
||||||
serviceRegistry.getService( RegionFactory.class ).isMinimalPutsEnabledByDefault()
|
regionFactory.isMinimalPutsEnabledByDefault()
|
||||||
);
|
);
|
||||||
this.structuredCacheEntriesEnabled = cfgService.getSetting( USE_STRUCTURED_CACHE, BOOLEAN, false );
|
this.structuredCacheEntriesEnabled = cfgService.getSetting( USE_STRUCTURED_CACHE, BOOLEAN, false );
|
||||||
this.directReferenceCacheEntriesEnabled = cfgService.getSetting( USE_DIRECT_REFERENCE_CACHE_ENTRIES,BOOLEAN, false );
|
this.directReferenceCacheEntriesEnabled = cfgService.getSetting(
|
||||||
|
USE_DIRECT_REFERENCE_CACHE_ENTRIES,
|
||||||
|
BOOLEAN,
|
||||||
|
false
|
||||||
|
);
|
||||||
this.autoEvictCollectionCache = cfgService.getSetting( AUTO_EVICT_COLLECTION_CACHE, BOOLEAN, false );
|
this.autoEvictCollectionCache = cfgService.getSetting( AUTO_EVICT_COLLECTION_CACHE, BOOLEAN, false );
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
this.secondLevelCacheEnabled = false;
|
||||||
|
this.queryCacheEnabled = false;
|
||||||
|
this.queryCacheFactory = null;
|
||||||
|
this.cacheRegionPrefix = null;
|
||||||
|
this.minimalPutsEnabled = false;
|
||||||
|
this.structuredCacheEntriesEnabled = false;
|
||||||
|
this.directReferenceCacheEntriesEnabled = false;
|
||||||
|
this.autoEvictCollectionCache = false;
|
||||||
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
this.schemaAutoTooling = SchemaAutoTooling.interpret( (String) configurationSettings.get( AvailableSettings.HBM2DDL_AUTO ) );
|
this.schemaAutoTooling = SchemaAutoTooling.interpret( (String) configurationSettings.get( AvailableSettings.HBM2DDL_AUTO ) );
|
||||||
|
|
Loading…
Reference in New Issue