|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ApplicationContext | |
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.access | Helper infrastructure to locate and access application contexts. |
org.springframework.context.event | Support classes for application events, like standard context events. |
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.ui.context.support | Classes supporting the org.springframework.ui.context package. |
org.springframework.web.context | Contains the application context subinterface for web applications, and the ContextLoaderListener that bootstraps the root web application context. |
org.springframework.web.context.support | Classes supporting the org.springframework.web.context package, such as WebApplicationContext implementations, and a utility class for retrieval of the root application context etc. |
Uses of ApplicationContext in org.springframework.context |
Subinterfaces of ApplicationContext in org.springframework.context | |
interface |
ConfigurableApplicationContext
SPI interface to be implemented by most if not all application contexts. |
Methods in org.springframework.context that return ApplicationContext | |
ApplicationContext |
ApplicationContext.getParent()
Return the parent context, or null if there is no parent, and this is the root of the context hierarchy. |
Methods in org.springframework.context with parameters of type ApplicationContext | |
void |
ConfigurableApplicationContext.setParent(ApplicationContext parent)
Set the parent of this application context. |
void |
ApplicationContextAware.setApplicationContext(ApplicationContext context)
Set the ApplicationContext that this object runs in. |
Uses of ApplicationContext in org.springframework.context.access |
Constructors in org.springframework.context.access with parameters of type ApplicationContext | |
ContextBeanFactoryReference(ApplicationContext applicationContext)
|
Uses of ApplicationContext in org.springframework.context.event |
Methods in org.springframework.context.event that return ApplicationContext | |
ApplicationContext |
ContextRefreshedEvent.getApplicationContext()
|
ApplicationContext |
ContextClosedEvent.getApplicationContext()
|
Constructors in org.springframework.context.event with parameters of type ApplicationContext | |
ContextRefreshedEvent(ApplicationContext source)
Creates a new ContextRefreshedEvent. |
|
ContextClosedEvent(ApplicationContext source)
Creates a new ContextClosedEvent. |
Uses of ApplicationContext in org.springframework.context.support |
Classes in org.springframework.context.support that implement ApplicationContext | |
class |
AbstractApplicationContext
Partial implementation of ApplicationContext. |
class |
AbstractXmlApplicationContext
Convenient abstract superclass for ApplicationContext implementations drawing their configuration from XML documents containing bean definitions understood by an XmlBeanDefinitionParser. |
class |
ClassPathXmlApplicationContext
Standalone XML application context, taking the context definition files from the class path. |
class |
FileSystemXmlApplicationContext
Standalone XML application context, taking the context definition files from the file system or from URLs. |
class |
StaticApplicationContext
ApplicationContext that allows concrete registration of beans and messages in code, rather than from external configuration sources. |
Methods in org.springframework.context.support that return ApplicationContext | |
ApplicationContext |
ApplicationObjectSupport.getApplicationContext()
Return the ApplicationContext instance used by this object. |
ApplicationContext |
AbstractApplicationContext.getParent()
Return the parent context, or null if there is no parent, and this is the root of the context hierarchy. |
Methods in org.springframework.context.support with parameters of type ApplicationContext | |
void |
ApplicationObjectSupport.setApplicationContext(ApplicationContext context)
|
void |
AbstractApplicationContext.setParent(ApplicationContext parent)
|
Constructors in org.springframework.context.support with parameters of type ApplicationContext | |
StaticApplicationContext(ApplicationContext parent)
Create new StaticApplicationContext with the given parent. |
|
ResourceEntityResolver(ApplicationContext applicationContext)
|
|
FileSystemXmlApplicationContext(java.lang.String[] configLocations,
ApplicationContext parent)
Create a new FileSystemXmlApplicationContext with the given parent, loading the definitions from the given XML files. |
|
ContextResourceEditor(ApplicationContext applicationContext)
Create a new ContextResourceEditor for the given context. |
|
ClassPathXmlApplicationContext(java.lang.String[] configLocations,
ApplicationContext parent)
Create a new ClassPathXmlApplicationContext with the given parent, loading the definitions from the given XML files. |
|
ApplicationObjectSupport(ApplicationContext context)
Constructor for usage as helper to delegate to. |
|
ApplicationContextAwareProcessor(ApplicationContext applicationContext)
Create a new ApplicationContextAwareProcessor for the given context. |
|
AbstractXmlApplicationContext(ApplicationContext parent)
Create a new AbstractXmlApplicationContext with the given parent context. |
|
AbstractApplicationContext(ApplicationContext parent)
Create a new AbstractApplicationContext with the given parent context. |
Uses of ApplicationContext in org.springframework.ui.context.support |
Methods in org.springframework.ui.context.support with parameters of type ApplicationContext | |
static ThemeSource |
UiApplicationContextUtils.initThemeSource(ApplicationContext context)
Initialize the ThemeSource for the given application context, auto-detecting a bean with the name "themeSource". |
Uses of ApplicationContext in org.springframework.web.context |
Subinterfaces of ApplicationContext in org.springframework.web.context | |
interface |
ConfigurableWebApplicationContext
Interface to be implemented by configurable web application contexts. |
interface |
WebApplicationContext
Interface to provide configuration for a web application. |
Methods in org.springframework.web.context that return ApplicationContext | |
protected ApplicationContext |
ContextLoader.loadParentContext(javax.servlet.ServletContext servletContext)
Template method which may be overridden by a subclass to load or obtain an ApplicationContext instance which will be used as the parent context of the root WebApplicationContext if it is not null. |
Methods in org.springframework.web.context with parameters of type ApplicationContext | |
protected WebApplicationContext |
ContextLoader.createWebApplicationContext(javax.servlet.ServletContext servletContext,
ApplicationContext parent)
Instantiate the root WebApplicationContext for this loader, either a default XmlWebApplicationContext or a custom context class if specified. |
Uses of ApplicationContext in org.springframework.web.context.support |
Classes in org.springframework.web.context.support that implement ApplicationContext | |
class |
StaticWebApplicationContext
Static WebApplicationContext implementation for testing. |
class |
XmlWebApplicationContext
WebApplicationContext implementation that takes configuration from an XML document. |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |