Interface ContextCache
- All Known Implementing Classes:
- DefaultContextCache
ContextCache defines the SPI for caching Spring
 ApplicationContexts within the
 Spring TestContext Framework.
 A ContextCache maintains a cache of ApplicationContexts
 keyed by MergedContextConfiguration instances, potentially configured
 with a maximum size and
 a custom eviction policy.
 
Rationale
Context caching can have significant performance benefits if context
 initialization is complex. Although the initialization of a Spring context
 itself is typically very quick, some beans in a context — for example,
 an embedded database or a LocalContainerEntityManagerFactoryBean for
 working with JPA — may take several seconds to initialize. Hence it
 often makes sense to perform that initialization only once per test suite or
 JVM process.
- Since:
- 4.2
- Author:
- Sam Brannen, Juergen Hoeller
- See Also:
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final StringThe name of the logging category used for reportingContextCachestatistics.static final intThe default maximum size of the context cache: 32.static final StringSystem property used to configure the maximum size of theContextCacheas a positive integer.
- 
Method SummaryModifier and TypeMethodDescriptionvoidclear()Clear all contexts from the cache, clearing context hierarchy information as well.voidClear hit and miss count statistics for the cache (i.e., reset counters to zero).booleanDetermine whether there is a cached context for the given key.Obtain a cachedApplicationContextfor the given key.intGet the overall hit count for this cache.intGet the overall miss count for this cache.intDetermine the number of parent contexts currently tracked within the cache.voidLog the statistics for thisContextCacheatDEBUGlevel using the "org.springframework.test.context.cache" logging category.voidput(MergedContextConfiguration key, ApplicationContext context) Explicitly add anApplicationContextinstance to the cache under the given key, potentially honoring a custom eviction policy.voidremove(MergedContextConfiguration key, DirtiesContext.HierarchyMode hierarchyMode) Remove the context with the given key from the cache and explicitly close it if it is an instance ofConfigurableApplicationContext.voidreset()Reset all state maintained by this cache including statistics.intsize()Determine the number of contexts currently stored in the cache.
- 
Field Details- 
CONTEXT_CACHE_LOGGING_CATEGORYThe name of the logging category used for reportingContextCachestatistics.- See Also:
 
- 
DEFAULT_MAX_CONTEXT_CACHE_SIZEstatic final int DEFAULT_MAX_CONTEXT_CACHE_SIZEThe default maximum size of the context cache: 32.- Since:
- 4.3
- See Also:
 
- 
MAX_CONTEXT_CACHE_SIZE_PROPERTY_NAMESystem property used to configure the maximum size of theContextCacheas a positive integer. May alternatively be configured via theSpringPropertiesmechanism.Note that implementations of ContextCacheare not required to actually support a maximum cache size. Consult the documentation of the corresponding implementation for details.- Since:
- 4.3
- See Also:
 
 
- 
- 
Method Details- 
containsDetermine whether there is a cached context for the given key.- Parameters:
- key- the context key (never- null)
- Returns:
- trueif the cache contains a context with the given key
 
- 
getObtain a cachedApplicationContextfor the given key.- Parameters:
- key- the context key (never- null)
- Returns:
- the corresponding ApplicationContextinstance, ornullif not found in the cache
- See Also:
 
- 
putExplicitly add anApplicationContextinstance to the cache under the given key, potentially honoring a custom eviction policy.- Parameters:
- key- the context key (never- null)
- context- the- ApplicationContextinstance (never- null)
 
- 
removeRemove the context with the given key from the cache and explicitly close it if it is an instance ofConfigurableApplicationContext.Generally speaking, this method should be called to properly evict a context from the cache (e.g., due to a custom eviction policy) or if the state of a singleton bean has been modified, potentially affecting future interaction with the context. In addition, the semantics of the supplied HierarchyModemust be honored. See the Javadoc forDirtiesContext.HierarchyModefor details.- Parameters:
- key- the context key; never- null
- hierarchyMode- the hierarchy mode; may be- nullif the context is not part of a hierarchy
 
- 
sizeint size()Determine the number of contexts currently stored in the cache.If the cache contains more than Integer.MAX_VALUEelements, this method must returnInteger.MAX_VALUE.
- 
getParentContextCountint getParentContextCount()Determine the number of parent contexts currently tracked within the cache.
- 
getHitCountint getHitCount()Get the overall hit count for this cache.A hit is any access to the cache that returns a non-null context for the queried key. 
- 
getMissCountint getMissCount()Get the overall miss count for this cache.A miss is any access to the cache that returns a nullcontext for the queried key.
- 
resetvoid reset()Reset all state maintained by this cache including statistics.- See Also:
 
- 
clearvoid clear()Clear all contexts from the cache, clearing context hierarchy information as well.
- 
clearStatisticsvoid clearStatistics()Clear hit and miss count statistics for the cache (i.e., reset counters to zero).
- 
logStatisticsvoid logStatistics()Log the statistics for thisContextCacheatDEBUGlevel using the "org.springframework.test.context.cache" logging category.The following information should be logged. - name of the concrete ContextCacheimplementation
- size()
- parent context count
- hit count
- miss count
- any other information useful for monitoring the state of this cache
 
- name of the concrete 
 
-