Uses of Interface
org.springframework.context.ConfigurableApplicationContext
Packages that use ConfigurableApplicationContext Package Description org.springframework.context This package builds on the beans package to add support for message sources and for the Observer design pattern, and the ability for application objects to obtain resources using a consistent API.org.springframework.context.annotation Annotation support for the Application Context, including JSR-250 "common" annotations, component-scanning, and Java-based metadata for creating Spring-managed objects.org.springframework.context.support Classes supporting the org.springframework.context package, such as abstract base classes for ApplicationContext implementations and a MessageSource implementation.org.springframework.jca.context Integration package that allows for deploying a Spring application context as a JCA 1.7 compliant RAR file.org.springframework.test.context This package contains the Spring TestContext Framework which provides annotation-driven unit and integration testing support that is agnostic of the actual testing framework in use.org.springframework.test.context.support Support classes for the Spring TestContext Framework.org.springframework.test.context.web Web support classes for the Spring TestContext Framework.org.springframework.web.context Contains a variant of the application context interface for web applications, and the ContextLoaderListener that bootstraps a root web application context.org.springframework.web.context.support Classes supporting theorg.springframework.web.contextpackage, such as WebApplicationContext implementations and various utility classes.org.springframework.web.servlet Provides servlets that integrate with the application context infrastructure, and the core interfaces and classes for the Spring web MVC framework.Uses of ConfigurableApplicationContext in org.springframework.context
Classes in org.springframework.context with type parameters of type ConfigurableApplicationContext Modifier and Type Interface Description interfaceApplicationContextInitializer<C extends ConfigurableApplicationContext>Callback interface for initializing a SpringConfigurableApplicationContextprior to being refreshed.Uses of ConfigurableApplicationContext in org.springframework.context.annotation
Classes in org.springframework.context.annotation that implement ConfigurableApplicationContext Modifier and Type Class Description classAnnotationConfigApplicationContextStandalone application context, accepting component classes as input — in particular@Configuration-annotated classes, but also plain@Componenttypes and JSR-330 compliant classes usingjavax.injectannotations.Uses of ConfigurableApplicationContext in org.springframework.context.support
Classes in org.springframework.context.support that implement ConfigurableApplicationContext Modifier and Type Class Description classAbstractApplicationContextAbstract implementation of theApplicationContextinterface.classAbstractRefreshableApplicationContextBase class forApplicationContextimplementations which are supposed to support multiple calls toAbstractApplicationContext.refresh(), creating a new internal bean factory instance every time.classAbstractRefreshableConfigApplicationContextAbstractRefreshableApplicationContextsubclass that adds common handling of specified config locations.classAbstractXmlApplicationContextConvenient base class forApplicationContextimplementations, drawing configuration from XML documents containing bean definitions understood by anXmlBeanDefinitionReader.classClassPathXmlApplicationContextStandalone XML application context, taking the context definition files from the class path, interpreting plain paths as class path resource names that include the package path (e.g.classFileSystemXmlApplicationContextStandalone XML application context, taking the context definition files from the file system or from URLs, interpreting plain paths as relative file system locations (e.g.classGenericApplicationContextGeneric ApplicationContext implementation that holds a single internalDefaultListableBeanFactoryinstance and does not assume a specific bean definition format.classGenericGroovyApplicationContextAnApplicationContextimplementation that extendsGenericApplicationContextand implementsGroovyObjectsuch that beans can be retrieved with the dot de-reference syntax instead of usingAbstractApplicationContext.getBean(java.lang.String).classGenericXmlApplicationContextConvenient application context with built-in XML support.classStaticApplicationContextApplicationContextimplementation which supports programmatic registration of beans and messages, rather than reading bean definitions from external configuration sources.Methods in org.springframework.context.support that return types with arguments of type ConfigurableApplicationContext Modifier and Type Method Description protected Set<ConfigurableApplicationContext>LiveBeansView. findApplicationContexts()Find all applicable ApplicationContexts for the current application.Method parameters in org.springframework.context.support with type arguments of type ConfigurableApplicationContext Modifier and Type Method Description protected StringLiveBeansView. generateJson(Set<ConfigurableApplicationContext> contexts)Actually generate a JSON snapshot of the beans in the given ApplicationContexts.Uses of ConfigurableApplicationContext in org.springframework.jca.context
Classes in org.springframework.jca.context that implement ConfigurableApplicationContext Modifier and Type Class Description classResourceAdapterApplicationContextApplicationContextimplementation for a JCA ResourceAdapter.Methods in org.springframework.jca.context that return ConfigurableApplicationContext Modifier and Type Method Description protected ConfigurableApplicationContextSpringContextResourceAdapter. createApplicationContext(BootstrapContext bootstrapContext)Build a Spring ApplicationContext for the given JCA BootstrapContext.Uses of ConfigurableApplicationContext in org.springframework.test.context
Methods in org.springframework.test.context with parameters of type ConfigurableApplicationContext Modifier and Type Method Description voidContextCustomizer. customizeContext(ConfigurableApplicationContext context, MergedContextConfiguration mergedConfig)Customize the suppliedConfigurableApplicationContextafter bean definitions have been loaded into the context but before the context has been refreshed.Uses of ConfigurableApplicationContext in org.springframework.test.context.support
Methods in org.springframework.test.context.support that return ConfigurableApplicationContext Modifier and Type Method Description ConfigurableApplicationContextAbstractGenericContextLoader. loadContext(String... locations)Load a Spring ApplicationContext from the suppliedlocations.ConfigurableApplicationContextAbstractGenericContextLoader. loadContext(MergedContextConfiguration mergedConfig)Load a Spring ApplicationContext from the suppliedMergedContextConfiguration.Methods in org.springframework.test.context.support with parameters of type ConfigurableApplicationContext Modifier and Type Method Description static voidTestPropertySourceUtils. addInlinedPropertiesToEnvironment(ConfigurableApplicationContext context, String... inlinedProperties)Add the given inlined properties to theEnvironmentof the suppliedcontext.static voidTestPropertySourceUtils. addPropertiesFilesToEnvironment(ConfigurableApplicationContext context, String... locations)Add thePropertiesfiles from the given resourcelocationsto theEnvironmentof the suppliedcontext.protected voidAbstractContextLoader. customizeContext(ConfigurableApplicationContext context, MergedContextConfiguration mergedConfig)Customize theConfigurableApplicationContextcreated by thisContextLoaderafter bean definitions have been loaded into the context but before the context has been refreshed.protected voidAbstractContextLoader. prepareContext(ConfigurableApplicationContext context, MergedContextConfiguration mergedConfig)Prepare theConfigurableApplicationContextcreated by thisSmartContextLoaderbefore bean definitions are read.Uses of ConfigurableApplicationContext in org.springframework.test.context.web
Methods in org.springframework.test.context.web that return ConfigurableApplicationContext Modifier and Type Method Description ConfigurableApplicationContextAbstractGenericWebContextLoader. loadContext(MergedContextConfiguration mergedConfig)Load a SpringWebApplicationContextfrom the suppliedMergedContextConfiguration.Uses of ConfigurableApplicationContext in org.springframework.web.context
Subinterfaces of ConfigurableApplicationContext in org.springframework.web.context Modifier and Type Interface Description interfaceConfigurableWebApplicationContextInterface to be implemented by configurable web application contexts.Methods in org.springframework.web.context that return types with arguments of type ConfigurableApplicationContext Modifier and Type Method Description protected List<Class<ApplicationContextInitializer<ConfigurableApplicationContext>>>ContextLoader. determineContextInitializerClasses(ServletContext servletContext)Return theApplicationContextInitializerimplementation classes to use if any have been specified byContextLoader.CONTEXT_INITIALIZER_CLASSES_PARAM.Uses of ConfigurableApplicationContext in org.springframework.web.context.support
Classes in org.springframework.web.context.support that implement ConfigurableApplicationContext Modifier and Type Class Description classAbstractRefreshableWebApplicationContextAbstractRefreshableApplicationContextsubclass which implements theConfigurableWebApplicationContextinterface for web environments.classAnnotationConfigWebApplicationContextWebApplicationContextimplementation which accepts component classes as input — in particular@Configuration-annotated classes, but also plain@Componentclasses and JSR-330 compliant classes usingjavax.injectannotations.classGenericWebApplicationContextSubclass ofGenericApplicationContext, suitable for web environments.classGroovyWebApplicationContextWebApplicationContextimplementation which takes its configuration from Groovy bean definition scripts and/or XML files, as understood by aGroovyBeanDefinitionReader.classStaticWebApplicationContextStaticWebApplicationContextimplementation for testing.classXmlWebApplicationContextWebApplicationContextimplementation which takes its configuration from XML documents, understood by anXmlBeanDefinitionReader.Methods in org.springframework.web.context.support that return types with arguments of type ConfigurableApplicationContext Modifier and Type Method Description protected Set<ConfigurableApplicationContext>ServletContextLiveBeansView. findApplicationContexts()Uses of ConfigurableApplicationContext in org.springframework.web.servlet
Methods in org.springframework.web.servlet with parameters of type ConfigurableApplicationContext Modifier and Type Method Description protected voidFrameworkServlet. applyInitializers(ConfigurableApplicationContext wac)Delegate the WebApplicationContext before it is refreshed to anyApplicationContextInitializerinstances specified by the "contextInitializerClasses" servlet init-param.