Uses of Class
org.hibernate.cache.CacheException
-
Packages that use CacheException Package Description org.hibernate.action.internal The various concrete action implementations.org.hibernate.cache This package defines the API of the second-level cache service.org.hibernate.cache.internal Internal implementations and support for second-level caching.org.hibernate.cache.spi Defines the integration aspect of Hibernate's second-level caching, allowing a "caching backend" to be plugged in as a cache provider.org.hibernate.cache.spi.support This package provides a framework intended to reduce the work needed to implement a caching provider.org.hibernate.internal An internal package containing implementations of central Hibernate APIs, mostly defined inorg.hibernate
.org.hibernate.persister.collection This package abstracts persistence mechanisms for collections. -
-
Uses of CacheException in org.hibernate.action.internal
Methods in org.hibernate.action.internal that throw CacheException Modifier and Type Method Description void
CollectionAction. beforeExecutions()
void
EntityUpdateAction. doAfterTransactionCompletion(boolean success, SharedSessionContractImplementor session)
protected void
CollectionAction. evict()
-
Uses of CacheException in org.hibernate.cache
Subclasses of CacheException in org.hibernate.cache Modifier and Type Class Description class
NoCacheRegionFactoryAvailableException
Indicates a condition where a second-level cache implementation was expected to be available, but none was found on the classpath. -
Uses of CacheException in org.hibernate.cache.internal
Methods in org.hibernate.cache.internal that throw CacheException Modifier and Type Method Description void
NoCachingRegionFactory. start(SessionFactoryOptions settings, Map<String,Object> configValues)
-
Uses of CacheException in org.hibernate.cache.spi
Methods in org.hibernate.cache.spi that throw CacheException Modifier and Type Method Description default void
QueryResultsCache. clear()
Clear all items from this query result cache.default void
TimestampsCache. clear()
void
Region. destroy()
The "end state" contract of the region's lifecycle.void
AbstractRegionFactory. start(SessionFactoryOptions settings, Map<String,Object> configValues)
void
RegionFactory. start(SessionFactoryOptions settings, Map<String,Object> configValues)
Lifecycle callback to perform any necessary initialization of the underlying cache provider. -
Uses of CacheException in org.hibernate.cache.spi.support
Methods in org.hibernate.cache.spi.support that throw CacheException Modifier and Type Method Description void
AbstractDomainDataRegion. destroy()
void
EntityNonStrictReadWriteAccess. unlockItem(SharedSessionContractImplementor session, Object key, SoftLock lock)
Since this is a non-strict read/write strategy item locking is not used. -
Uses of CacheException in org.hibernate.internal
Methods in org.hibernate.internal with parameters of type CacheException Modifier and Type Method Description void
CoreMessageLogger. unableToReleaseCacheLock(CacheException ce)
-
Uses of CacheException in org.hibernate.persister.collection
Constructors in org.hibernate.persister.collection that throw CacheException Constructor Description AbstractCollectionPersister(Collection collectionBootDescriptor, CollectionDataAccess cacheAccessStrategy, RuntimeModelCreationContext creationContext)
AbstractCollectionPersister(Collection collectionBootDescriptor, CollectionDataAccess cacheAccessStrategy, PersisterCreationContext creationContext)
Deprecated.BasicCollectionPersister(Collection collectionBinding, CollectionDataAccess cacheAccessStrategy, RuntimeModelCreationContext creationContext)
BasicCollectionPersister(Collection collectionBinding, CollectionDataAccess cacheAccessStrategy, PersisterCreationContext creationContext)
Deprecated.OneToManyPersister(Collection collectionBinding, CollectionDataAccess cacheAccessStrategy, RuntimeModelCreationContext creationContext)
OneToManyPersister(Collection collectionBinding, CollectionDataAccess cacheAccessStrategy, PersisterCreationContext creationContext)
Deprecated.
-