|
||||||||||
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 shared 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.remoting.jaxrpc | Remoting classes for Web Services via JAX-RPC. |
org.springframework.scheduling.quartz | Support classes for the open source scheduler Quartz, allowing to set up Quartz Schedulers, JobDetails and Triggers as beans in a Spring context. |
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. |
org.springframework.web.servlet.view.tiles | Support classes for the integration of Tiles (included in Struts) as Spring web view technology. |
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 |
ApplicationContextAware.setApplicationContext(ApplicationContext applicationContext)
Set the ApplicationContext that this object runs in. |
void |
ConfigurableApplicationContext.setParent(ApplicationContext parent)
Set the parent of this application context. |
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 | |
---|---|
ContextClosedEvent(ApplicationContext source)
Creates a new ContextClosedEvent. |
|
ContextRefreshedEvent(ApplicationContext source)
Creates a new ContextRefreshedEvent. |
Uses of ApplicationContext in org.springframework.context.support |
---|
Classes in org.springframework.context.support that implement ApplicationContext | |
---|---|
class |
AbstractApplicationContext
Abstract implementation of the ApplicationContext interface. |
class |
AbstractRefreshableApplicationContext
Base class for ApplicationContext implementations that are supposed to support multiple refreshs, creating a new internal bean factory instance every time. |
class |
AbstractXmlApplicationContext
Convenient abstract superclass for ApplicationContext implementations, drawing configuration from XML documents containing bean definitions understood by an XmlBeanDefinitionReader. |
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 |
GenericApplicationContext
Generic ApplicationContext implementation that holds a single internal DefaultListableBeanFactory instance and does not assume a specific bean definition format. |
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 (that is, this context 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)
|
void |
GenericApplicationContext.setParent(ApplicationContext parent)
Set the parent of this application context, also setting the parent of the internal BeanFactory accordingly. |
Constructors in org.springframework.context.support with parameters of type ApplicationContext | |
---|---|
AbstractApplicationContext(ApplicationContext parent)
Create a new AbstractApplicationContext with the given parent context. |
|
AbstractRefreshableApplicationContext(ApplicationContext parent)
Create a new AbstractRefreshableApplicationContext with the given parent context. |
|
AbstractXmlApplicationContext(ApplicationContext parent)
Create a new AbstractXmlApplicationContext with the given parent context. |
|
ApplicationContextAwareProcessor(ApplicationContext applicationContext)
Create a new ApplicationContextAwareProcessor for the given context. |
|
ClassPathXmlApplicationContext(String[] configLocations,
ApplicationContext parent)
Create a new ClassPathXmlApplicationContext with the given parent, loading the definitions from the given XML files and automatically refreshing the context. |
|
ClassPathXmlApplicationContext(String[] configLocations,
boolean refresh,
ApplicationContext parent)
Create a new ClassPathXmlApplicationContext with the given parent, loading the definitions from the given XML files. |
|
FileSystemXmlApplicationContext(String[] configLocations,
ApplicationContext parent)
Create a new FileSystemXmlApplicationContext with the given parent, loading the definitions from the given XML files and automatically refreshing the context. |
|
FileSystemXmlApplicationContext(String[] configLocations,
boolean refresh,
ApplicationContext parent)
Create a new FileSystemXmlApplicationContext with the given parent, loading the definitions from the given XML files. |
|
GenericApplicationContext(ApplicationContext parent)
Create a new GenericApplicationContext with the given parent. |
|
GenericApplicationContext(DefaultListableBeanFactory beanFactory,
ApplicationContext parent)
Create a new GenericApplicationContext with the given DefaultListableBeanFactory. |
|
StaticApplicationContext(ApplicationContext parent)
Create a new StaticApplicationContext with the given parent. |
Uses of ApplicationContext in org.springframework.remoting.jaxrpc |
---|
Methods in org.springframework.remoting.jaxrpc that return ApplicationContext | |
---|---|
protected ApplicationContext |
ServletEndpointSupport.getApplicationContext()
Return the current Spring ApplicationContext. |
Uses of ApplicationContext in org.springframework.scheduling.quartz |
---|
Methods in org.springframework.scheduling.quartz with parameters of type ApplicationContext | |
---|---|
void |
JobDetailBean.setApplicationContext(ApplicationContext applicationContext)
|
void |
SchedulerFactoryBean.setApplicationContext(ApplicationContext applicationContext)
|
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(ServletContext servletContext)
Template method with default implementation (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. |
Methods in org.springframework.web.context with parameters of type ApplicationContext | |
---|---|
protected WebApplicationContext |
ContextLoader.createWebApplicationContext(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 |
AbstractRefreshableWebApplicationContext
AbstractRefreshableApplicationContext subclass that implements the ConfigurableWebApplicationContext interface for web environments. |
class |
GenericWebApplicationContext
Subclass of GenericApplicationContext, suitable for web environments. |
class |
StaticWebApplicationContext
Static WebApplicationContext implementation for testing. |
class |
XmlWebApplicationContext
WebApplicationContext implementation that takes configuration from an XML document, understood by an XmlBeanDefinitionReader. |
Uses of ApplicationContext in org.springframework.web.servlet.view.tiles |
---|
Methods in org.springframework.web.servlet.view.tiles that return ApplicationContext | |
---|---|
protected ApplicationContext |
ComponentControllerSupport.getApplicationContext()
Return the current Spring ApplicationContext. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |