Examples of EntityRegion


Examples of org.hibernate.cache.spi.EntityRegion

        if ( accessStrategy == null ) {
          final AccessType accessType = model.getHierarchyDetails().getCaching().getAccessType();
          if ( LOG.isTraceEnabled() ) {
            LOG.tracev( "Building cache for entity data [{0}]", model.getEntity().getName() );
          }
          EntityRegion entityRegion = settings.getRegionFactory().buildEntityRegion(
              cacheRegionName, properties, CacheDataDescriptionImpl.decode( model )
          );
          accessStrategy = entityRegion.buildAccessStrategy( accessType );
          entityAccessStrategies.put( cacheRegionName, accessStrategy );
          cacheAccess.addCacheRegion( cacheRegionName, entityRegion );
        }
      }
      EntityPersister cp = serviceRegistry.getService( PersisterFactory.class ).createEntityPersister(
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.