Interface CacheAwareContextLoaderDelegate
- All Known Implementing Classes:
- DefaultCacheAwareContextLoaderDelegate
CacheAwareContextLoaderDelegate is responsible for loading and closing application
 contexts, interacting transparently with a
 ContextCache
 behind the scenes.
 Note: CacheAwareContextLoaderDelegate does not extend the
 ContextLoader or SmartContextLoader interface.
- Since:
- 3.2.2
- Author:
- Sam Brannen
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final StringSystem property used to configure the failure threshold for errors encountered while attempting to load an application context: "spring.test.context.failure.threshold".static final intThe default failure threshold for errors encountered while attempting to load an application context: 1.
- 
Method SummaryModifier and TypeMethodDescriptionvoidcloseContext(MergedContextConfiguration mergedConfig, DirtiesContext.HierarchyMode hierarchyMode) Remove the application context for the suppliedMergedContextConfigurationfrom theContextCacheand close it if it is an instance ofConfigurableApplicationContext.default booleanisContextLoaded(MergedContextConfiguration mergedConfig) Determine if the application context for the suppliedMergedContextConfigurationhas been loaded (i.e., is present in theContextCache).loadContext(MergedContextConfiguration mergedConfig) Load the application context for the suppliedMergedContextConfigurationby delegating to theContextLoaderconfigured in the givenMergedContextConfiguration.
- 
Field Details- 
DEFAULT_CONTEXT_FAILURE_THRESHOLDstatic final int DEFAULT_CONTEXT_FAILURE_THRESHOLDThe default failure threshold for errors encountered while attempting to load an application context: 1.- Since:
- 6.1
- See Also:
 
- 
CONTEXT_FAILURE_THRESHOLD_PROPERTY_NAMESystem property used to configure the failure threshold for errors encountered while attempting to load an application context: "spring.test.context.failure.threshold".May alternatively be configured via the SpringPropertiesmechanism.Implementations of CacheAwareContextLoaderDelegateare not required to support this feature. Consult the documentation of the corresponding implementation for details. Note, however, that the standardCacheAwareContextLoaderDelegateimplementation in Spring supports this feature.
 
- 
- 
Method Details- 
isContextLoadedDetermine if the application context for the suppliedMergedContextConfigurationhas been loaded (i.e., is present in theContextCache).Implementations of this method must not load the application context as a side effect. In addition, implementations of this method should not log the cache statistics via ContextCache.logStatistics().The default implementation of this method always returns false. CustomCacheAwareContextLoaderDelegateimplementations are therefore highly encouraged to override this method with a more meaningful implementation. Note that the standardCacheAwareContextLoaderDelegateimplementation in Spring overrides this method appropriately.- Parameters:
- mergedConfig- the merged context configuration used to load the application context; never- null
- Returns:
- trueif the application context has been loaded
- Since:
- 5.2
- See Also:
 
- 
loadContextLoad the application context for the suppliedMergedContextConfigurationby delegating to theContextLoaderconfigured in the givenMergedContextConfiguration.If the context is present in the ContextCacheit will simply be returned; otherwise, it will be loaded, stored in the cache, and returned.As of Spring Framework 6.0, implementations of this method should load ApplicationContextFailureProcessorimplementations via theSpringFactoriesLoadermechanism, catch any exception thrown by theContextLoader, and delegate to each of the configured failure processors to process the context load failure if the exception is an instance ofContextLoadException.As of Spring Framework 6.1, implementations of this method are encouraged to support the failure threshold feature. Specifically, if repeated attempts are made to load an application context and that application context consistently fails to load — for example, due to a configuration error that prevents the context from successfully loading — this method should preemptively throw an IllegalStateExceptionif the configured failure threshold has been exceeded. Note that theContextCacheprovides support for tracking and incrementing the failure count for a given context cache key.The cache statistics should be logged by invoking ContextCache.logStatistics().- Parameters:
- mergedConfig- the merged context configuration to use to load the application context; never- null
- Returns:
- the application context (never null)
- Throws:
- IllegalStateException- if an error occurs while retrieving or loading the application context
- See Also:
 
- 
closeContextvoid closeContext(MergedContextConfiguration mergedConfig, @Nullable DirtiesContext.HierarchyMode hierarchyMode) Remove the application context for the suppliedMergedContextConfigurationfrom theContextCacheand close it if it is an instance ofConfigurableApplicationContext.The semantics of the supplied HierarchyModemust be honored when removing the context from the cache. See the Javadoc forDirtiesContext.HierarchyModefor 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. - Parameters:
- mergedConfig- the merged context configuration for the application context to close; never- null
- hierarchyMode- the hierarchy mode; may be- nullif the context is not part of a hierarchy
- Since:
- 4.1
- See Also:
 
 
-