All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hibernate.cache.ehcache.internal.regions.EhcacheEntityRegion Maven / Gradle / Ivy

Go to download

Integration for using Ehcache 2.x as a Hibernate second-level-cache provider

There is a newer version: 6.0.0.Alpha7
Show newest version
/*
 * Hibernate, Relational Persistence for Idiomatic Java
 *
 * License: GNU Lesser General Public License (LGPL), version 2.1 or later.
 * See the lgpl.txt file in the root directory or .
 */
package org.hibernate.cache.ehcache.internal.regions;

import java.util.Properties;

import net.sf.ehcache.Ehcache;

import org.hibernate.boot.spi.SessionFactoryOptions;
import org.hibernate.cache.CacheException;
import org.hibernate.cache.ehcache.internal.strategy.EhcacheAccessStrategyFactory;
import org.hibernate.cache.spi.CacheDataDescription;
import org.hibernate.cache.spi.EntityRegion;
import org.hibernate.cache.spi.access.AccessType;
import org.hibernate.cache.spi.access.EntityRegionAccessStrategy;

/**
 * An entity region specific wrapper around an Ehcache instance.
 * 

* This implementation returns Ehcache specific access strategy instances for all the non-transactional access types. Transactional access * is not supported. * * @author Chris Dennis * @author Abhishek Sanoujam * @author Alex Snaps */ public class EhcacheEntityRegion extends EhcacheTransactionalDataRegion implements EntityRegion { /** * Constructs an EhcacheCollectionRegion around the given underlying cache. * * @param accessStrategyFactory The factory for building needed EntityRegionAccessStrategy instance * @param underlyingCache The ehcache cache instance * @param settings The Hibernate settings * @param metadata Metadata about the data to be cached in this region * @param properties Any additional[ properties */ public EhcacheEntityRegion( EhcacheAccessStrategyFactory accessStrategyFactory, Ehcache underlyingCache, SessionFactoryOptions settings, CacheDataDescription metadata, Properties properties) { super( accessStrategyFactory, underlyingCache, settings, metadata, properties ); } @Override public EntityRegionAccessStrategy buildAccessStrategy(AccessType accessType) throws CacheException { return getAccessStrategyFactory().createEntityRegionAccessStrategy( this, accessType ); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy