|
The Spring Framework | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface ApplicationContextAware
Interface to be implemented by any object that wishes to be notified of the ApplicationContext that it runs in.
Implementing this interface makes sense for example when an object requires access to a set of collaborating beans. Note that configuration via bean references is preferable to implementing this interface just for bean lookup purposes.
This interface can also be implemented if an object needs access to file resources, i.e. wants to call getResource, or access to the MessageSource. However, it is preferable to implement the more specific ResourceLoaderAware interface or receive a reference to the MessageSource bean in that scenario.
Note that Resource dependencies can also be exposed as bean properties of type Resource, populated via Strings with automatic type conversion by the bean factory. This removes the need for implementing any callback interface just for the purpose of accessing a specific file resource.
ApplicationObjectSupport is a convenience base class for application objects, implementing this interface.
For a list of all bean lifecycle methods, see the BeanFactory javadocs.
ResourceLoaderAware
,
ApplicationObjectSupport
,
BeanFactoryAware
,
InitializingBean
,
BeanFactory
Method Summary | |
---|---|
void |
setApplicationContext(ApplicationContext applicationContext)
Set the ApplicationContext that this object runs in. |
Method Detail |
---|
void setApplicationContext(ApplicationContext applicationContext) throws BeansException
Invoked after population of normal bean properties but before an init callback like InitializingBean's afterPropertiesSet or a custom init-method. Invoked after ResourceLoaderAware's setResourceLoader.
applicationContext
- ApplicationContext object to be used by this object
ApplicationContextException
- in case of applicationContext initialization errors
BeansException
- if thrown by application applicationContext methodsBeanInitializationException
|
The Spring Framework | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |