public class DefaultCacheAwareContextLoaderDelegate extends java.lang.Object implements CacheAwareContextLoaderDelegate
CacheAwareContextLoaderDelegate
interface.
To use a static DefaultContextCache
, invoke the
DefaultCacheAwareContextLoaderDelegate()
constructor; otherwise,
invoke the DefaultCacheAwareContextLoaderDelegate(ContextCache)
and provide a custom ContextCache
implementation.
Constructor and Description |
---|
DefaultCacheAwareContextLoaderDelegate()
Construct a new
DefaultCacheAwareContextLoaderDelegate using
a static DefaultContextCache . |
DefaultCacheAwareContextLoaderDelegate(ContextCache contextCache)
Construct a new
DefaultCacheAwareContextLoaderDelegate using
the supplied ContextCache . |
Modifier and Type | Method and Description |
---|---|
void |
closeContext(MergedContextConfiguration mergedContextConfiguration,
DirtiesContext.HierarchyMode hierarchyMode)
Remove the application context for the
supplied
MergedContextConfiguration from the ContextCache
and close it if it is
an instance of ConfigurableApplicationContext . |
protected ContextCache |
getContextCache()
Get the
ContextCache used by this context loader delegate. |
ApplicationContext |
loadContext(MergedContextConfiguration mergedContextConfiguration)
Load the application context for the supplied
MergedContextConfiguration by delegating to the ContextLoader
configured in the given MergedContextConfiguration . |
protected ApplicationContext |
loadContextInternal(MergedContextConfiguration mergedContextConfiguration)
Load the
ApplicationContext for the supplied merged context configuration. |
public DefaultCacheAwareContextLoaderDelegate()
DefaultCacheAwareContextLoaderDelegate
using
a static DefaultContextCache
.
This default cache is static so that each context can be cached and reused for all subsequent tests that declare the same unique context configuration within the same JVM process.
public DefaultCacheAwareContextLoaderDelegate(ContextCache contextCache)
DefaultCacheAwareContextLoaderDelegate
using
the supplied ContextCache
.DefaultCacheAwareContextLoaderDelegate()
protected ContextCache getContextCache()
ContextCache
used by this context loader delegate.protected ApplicationContext loadContextInternal(MergedContextConfiguration mergedContextConfiguration) throws java.lang.Exception
ApplicationContext
for the supplied merged context configuration.
Supports both the SmartContextLoader
and ContextLoader
SPIs.
java.lang.Exception
- if an error occurs while loading the application contextpublic ApplicationContext loadContext(MergedContextConfiguration mergedContextConfiguration)
CacheAwareContextLoaderDelegate
MergedContextConfiguration
by delegating to the ContextLoader
configured in the given MergedContextConfiguration
.
If the context is present in the ContextCache
it will simply
be returned; otherwise, it will be loaded, stored in the cache, and returned.
The cache statistics should be logged by invoking
ContextCache.logStatistics()
.
loadContext
in interface CacheAwareContextLoaderDelegate
mergedContextConfiguration
- the merged context configuration to use
to load the application context; never null
public void closeContext(MergedContextConfiguration mergedContextConfiguration, @Nullable DirtiesContext.HierarchyMode hierarchyMode)
CacheAwareContextLoaderDelegate
MergedContextConfiguration
from the ContextCache
and close it if it is
an instance of ConfigurableApplicationContext
.
The semantics of the supplied HierarchyMode
must be honored when
removing the context from the cache. See the Javadoc for DirtiesContext.HierarchyMode
for details.
Generally speaking, this method should only be called if the state of a singleton bean has been changed (potentially affecting future interaction with the context) or if the context needs to be prematurely removed from the cache.
closeContext
in interface CacheAwareContextLoaderDelegate
mergedContextConfiguration
- the merged context configuration for the
application context to close; never null
hierarchyMode
- the hierarchy mode; may be null
if the context
is not part of a hierarchy