接口 ApplicationContextAware
- 所有超级接口:
Aware
- 所有已知实现类:
ApplicationContextSupport,ConfigurationPropertiesBindingPostProcessor,EventListenerMethodProcessor,LocalValidatorFactoryBean,OptionalValidatorFactoryBean,ScheduledAnnotationBeanPostProcessor
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, wants to publish
an application event, or requires access to the MessageSource. However,
it is preferable to implement the more specific ResourceLoaderAware,
ApplicationEventPublisherAware or MessageSourceAware interface
in such a specific scenario.
Note that file 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.
ApplicationContextSupport is a
convenience base class for application objects, implementing this interface.
For a list of all bean lifecycle methods, see the
BeanFactory javadocs.
- 作者:
- Rod Johnson, Juergen Hoeller, Chris Beams, TODAY
2018-07-17 21:35:52 - 另请参阅:
-
方法概要
修饰符和类型方法说明voidsetApplicationContext(ApplicationContext applicationContext) Set the ApplicationContext that this object runs in.
-
方法详细资料
-
setApplicationContext
Set the ApplicationContext that this object runs in. Normally this call will be used to initialize the object.Invoked after population of normal bean properties but before an init callback such as
InitializingBean.afterPropertiesSet()or a custom init-method. Invoked afterResourceLoaderAware.setResourceLoader(cn.taketoday.core.io.ResourceLoader),ApplicationEventPublisherAware.setApplicationEventPublisher(cn.taketoday.context.ApplicationEventPublisher)andMessageSourceAware, if applicable.- 参数:
applicationContext- the ApplicationContext object to be used by this object- 抛出:
ApplicationContextException- in case of context initialization errorsBeansException- if thrown by application context methods- 另请参阅:
-