Spring中的ApplicationContextAware使用

      加载Spring配置文件时,如果Spring配置文件中所定义的Bean类实现了ApplicationContextAware 接口,那么在加载Spring配置文件时,会自动调用ApplicationContextAware 接口中的 public void setApplicationContext(ApplicationContext  applicationContext ) throws BeansException; 方法。
     我们日常使用中可以在Spring容器初始化后获取他的上下文对象

public class PoushengContext implements ApplicationContextAware {
     private  ApplicationContext applicationContext;
    @Override
     public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
           this.applicationContext = applicationContext;
     }
}


posted @ 2014-07-31 18:01  QuantSeven  阅读(877)  评论(0编辑  收藏  举报