Uses of Class
org.springframework.context.support.GenericApplicationContext
Packages that use GenericApplicationContext Package Description 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.support Support classes for the Spring TestContext Framework.org.springframework.web.context.support Classes supporting theorg.springframework.web.contextpackage, such as WebApplicationContext implementations and various utility classes.Uses of GenericApplicationContext in org.springframework.context.annotation
Subclasses of GenericApplicationContext in org.springframework.context.annotation 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 GenericApplicationContext in org.springframework.context.support
Subclasses of GenericApplicationContext in org.springframework.context.support Modifier and Type Class Description 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.Uses of GenericApplicationContext in org.springframework.jca.context
Subclasses of GenericApplicationContext in org.springframework.jca.context Modifier and Type Class Description classResourceAdapterApplicationContextApplicationContextimplementation for a JCA ResourceAdapter.Uses of GenericApplicationContext in org.springframework.test.context.support
Methods in org.springframework.test.context.support that return GenericApplicationContext Modifier and Type Method Description protected GenericApplicationContextAbstractGenericContextLoader. createContext()Factory method for creating theGenericApplicationContextused by thisContextLoader.Methods in org.springframework.test.context.support with parameters of type GenericApplicationContext Modifier and Type Method Description protected abstract BeanDefinitionReaderAbstractGenericContextLoader. createBeanDefinitionReader(GenericApplicationContext context)Factory method for creating a newBeanDefinitionReaderfor loading bean definitions into the suppliedcontext.protected BeanDefinitionReaderAnnotationConfigContextLoader. createBeanDefinitionReader(GenericApplicationContext context)AnnotationConfigContextLoadershould be used as aSmartContextLoader, not as a legacyContextLoader.protected BeanDefinitionReaderGenericPropertiesContextLoader. createBeanDefinitionReader(GenericApplicationContext context)Creates a newPropertiesBeanDefinitionReader.protected BeanDefinitionReaderGenericXmlContextLoader. createBeanDefinitionReader(GenericApplicationContext context)Create a newXmlBeanDefinitionReader.protected voidAbstractGenericContextLoader. customizeContext(GenericApplicationContext context)Customize theGenericApplicationContextcreated by thisContextLoaderafter bean definitions have been loaded into the context but before the context is refreshed.protected voidAbstractGenericContextLoader. loadBeanDefinitions(GenericApplicationContext context, MergedContextConfiguration mergedConfig)Load bean definitions into the suppliedcontextfrom the locations or classes in the suppliedMergedContextConfiguration.protected voidAnnotationConfigContextLoader. loadBeanDefinitions(GenericApplicationContext context, MergedContextConfiguration mergedConfig)Register classes in the suppliedcontextfrom the classes in the suppliedMergedContextConfiguration.protected voidGenericGroovyXmlContextLoader. loadBeanDefinitions(GenericApplicationContext context, MergedContextConfiguration mergedConfig)Load bean definitions into the suppliedcontextfrom the locations in the suppliedMergedContextConfigurationusing aGroovyBeanDefinitionReader.protected voidAbstractGenericContextLoader. prepareContext(GenericApplicationContext context)Prepare theGenericApplicationContextcreated by thisContextLoader.Uses of GenericApplicationContext in org.springframework.web.context.support
Subclasses of GenericApplicationContext in org.springframework.web.context.support Modifier and Type Class Description classGenericWebApplicationContextSubclass ofGenericApplicationContext, suitable for web environments.classStaticWebApplicationContextStaticWebApplicationContextimplementation for testing.