|
|||||||||
Home >> All >> org >> springframework >> context >> [ support overview ] | PREV PACKAGE NEXT PACKAGE |
Package org.springframework.context.support
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.
See:
Description
Class Summary | |
AbstractApplicationContext | Abstract implementation of the ApplicationContext interface. |
AbstractMessageSource | Abstract implementation of HierarchicalMessageSource interface, making it easy to implement a custom MessageSource. |
AbstractRefreshableApplicationContext | Base class for ApplicationContext implementations that are supposed to support multiple refreshs, creating a new internal bean factory instance every time. |
AbstractXmlApplicationContext | Convenient abstract superclass for ApplicationContext implementations, drawing configuration from XML documents containing bean definitions understood by an XmlBeanDefinitionReader. |
ApplicationContextAwareProcessor | BeanPostProcessor implementation that passes the application context to beans that implement the ApplicationContextAware or ResourceLoaderAware interfaces. |
ApplicationObjectSupport | Convenient superclass for application objects that want to be aware of the application context, e.g. |
ClassPathXmlApplicationContext | Standalone XML application context, taking the context definition files from the class path. |
DefaultMessageSourceResolvable | Default implementation of the MessageSourceResolvable interface. |
DelegatingMessageSource | Empty MessageSource that delegates all calls to the parent MessageSource. |
FileSystemXmlApplicationContext | Standalone XML application context, taking the context definition files from the file system or from URLs. |
GenericApplicationContext | Generic ApplicationContext implementation that holds a single internal DefaultListableBeanFactory instance and does not assume a specific bean definition format. |
MessageSourceAccessor | Helper class for easy access to messages from a MessageSource, providing various overloaded getMessage methods. |
MessageSourceResourceBundle | Helper class that allows for accessing a MessageSource as a ResourceBundle. |
ReloadableResourceBundleMessageSource | MessageSource that accesses the ResourceBundles with the specified basenames. |
ResourceBundleMessageSource | MessageSource that accesses the ResourceBundles with the specified basenames. |
ResourceEntityResolver | EntityResolver implementation that tries to resolve entity references relative to the resource base of the application context, if applicable. |
ResourceMapFactoryBean | FactoryBean that creates a Map with String keys and Resource values from properties, interpreting passed-in String values as resource locations. |
StaticApplicationContext | ApplicationContext that allows concrete registration of beans and messages in code, rather than from external configuration sources. |
StaticMessageSource | Simple implementation of MessageSource that allows messages to be held in a Java object, and added programmatically. |
Package org.springframework.context.support Description
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.
There is no necessity for Spring applications to depend on ApplicationContext or even BeanFactory functionality explicitly. One of the strengths of the Spring architecture is that application objects can often be configured without any dependency on Spring-specific APIs.
|
|||||||||
Home >> All >> org >> springframework >> context >> [ support overview ] | PREV PACKAGE NEXT PACKAGE |