|
ehcache | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectnet.sf.ehcache.hibernate.EhCacheProvider
@Deprecated public final class EhCacheProvider
Cache Provider plugin for Hibernate 3.2 and ehcache-1.2. New in this provider are ehcache support for multiple Hibernate session factories, each with its own ehcache configuration, and non Serializable keys and values. Ehcache-1.2 also has many other features such as cluster support and listeners, which can be used seamlessly simply by configurion in ehcache.xml.
Usehibernate.cache.provider_class=net.sf.ehcache.hibernate.EhCacheProvider
in the Hibernate configuration
to enable this provider for Hibernate's second level cache.
When configuring multiple ehcache CacheManagers, as you would where you have multiple Hibernate Configurations and
multiple SessionFactories, specify in each Hibernate configuration the ehcache configuration using
the property net.sf.ehcache.configurationResourceName
An example to set an ehcach configuration
called ehcache-2.xml would be net.sf.ehcache.configurationResourceName=/ehcache-2.xml
. If the leading
slash is not there one will be added. The configuration file will be looked for in the root of the classpath.
Updated for ehcache-1.2. Note this provider requires ehcache-1.2.jar. Make sure ehcache-1.1.jar or earlier
is not in the classpath or it will not work.
See http://ehcache.org for documentation on ehcache
Field Summary | |
---|---|
protected CacheManager |
manager
CacheManager instance that creates/builds Cache instances for this provider. |
static java.lang.String |
NET_SF_EHCACHE_CONFIGURATION_RESOURCE_NAME
Deprecated. The Hibernate system property specifying the location of the ehcache configuration file name. |
Constructor Summary | |
---|---|
EhCacheProvider()
Deprecated. |
Method Summary | |
---|---|
Cache |
buildCache(java.lang.String name,
java.util.Properties properties)
Builds a Cache. |
boolean |
isMinimalPutsEnabledByDefault()
Not sure what this is supposed to do. |
protected java.net.URL |
loadResource(java.lang.String configurationResourceName)
Load the supplied resource from the classpath. |
long |
nextTimestamp()
Returns the next timestamp. |
void |
start(java.util.Properties properties)
Deprecated. Callback to perform any necessary initialization of the underlying cache implementation during SessionFactory construction. |
void |
stop()
Deprecated. Callback to perform any necessary cleanup of the underlying cache implementation during SessionFactory.close(). |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final java.lang.String NET_SF_EHCACHE_CONFIGURATION_RESOURCE_NAME
protected volatile CacheManager manager
Constructor Detail |
---|
public EhCacheProvider()
Method Detail |
---|
public final void start(java.util.Properties properties) throws CacheException
properties
- current configuration settings.
CacheException
public final void stop()
public final Cache buildCache(java.lang.String name, java.util.Properties properties) throws CacheException
name
- the name of the cache. Must match a cache configured in ehcache.xmlproperties
- not used
org.hibernate.cache.CacheException
- inter alia, if a cache of the same name already exists
CacheException
public final long nextTimestamp()
public final boolean isMinimalPutsEnabledByDefault()
protected java.net.URL loadResource(java.lang.String configurationResourceName)
|
ehcache | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |