zoukankan      html  css  js  c++  java
  • spring框架加载完成后执行上下文刷新事件(ContextRefreshedEvent)

    目前spring框架是j2ee比较常用的项目开发技术,只需在web.xml文件中进行少许配置即可,代码如下所示:
    <!--spring的配置文件-->
    <context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>classpath:config/applicationContext.xml</param-value>
    </context-param>
    <!-- 启动spring容器的监听器-->
    <listener>
    <listenerclass>
                    org.springframework.web.context.ContextLoaderListener
            </listener-class>
    </listener>
    spring容器的许多初始化工作就是在ContextLoaderListener中完成,包括初始化applicationContext.xml文件中配置的bean对象、初始化国际化相关的对象(MessageSource)等,当这些步骤执行完后,最后一个就是执行刷新上下文事件,代码为
    public void refresh() throws BeansException, IllegalStateException {
    synchronized (this.startupShutdownMonitor) {
    try {
                    ...
                   ...
                   ...

    // Initialize message source for this context.
    initMessageSource();
                                    
                    ...
                    ...
                    ...

    // Last step: publish corresponding event.
    finishRefresh();
    } catch (BeansException ex) {
    // Destroy already created singletons to avoid dangling resources.
    destroyBeans();

    // Reset 'active' flag.
    cancelRefresh(ex);

    // Propagate exception to caller.
    throw ex;
    }
    }
    }

    /**
    * Finish the refresh of this context, invoking the LifecycleProcessor's
    * onRefresh() method and publishing the
    * {@link org.springframework.context.event.ContextRefreshedEvent}.
    */
    protected void finishRefresh() {
    // Initialize lifecycle processor for this context.
    initLifecycleProcessor();

    // Propagate refresh to lifecycle processor first.
    getLifecycleProcessor().onRefresh();

    // Publish the final event.
    publishEvent(new ContextRefreshedEvent(this));
    }
    跟进finishRefresh方法可发现publishEvent(new ContextRefreshedEvent(this));这行代码,此处就是刷新上下文的事件。

    public void publishEvent(ApplicationEvent event) {

    Assert.notNull(event, "Event must not be null");

    if (logger.isTraceEnabled()) {

    logger.trace("Publishing event in " + getDisplayName() + ": " + event);

    }

    getApplicationEventMulticaster().multicastEvent(event);

    if (this.parent != null) {

    this.parent.publishEvent(event);

    }

    }

    SimpleApplicationEventMulticaster.java

    @SuppressWarnings("unchecked")

    public void multicastEvent(final ApplicationEvent event) {

    for (final ApplicationListener listener : getApplicationListeners(event)) {

    Executor executor = getTaskExecutor();

    if (executor != null) {

    executor.execute(new Runnable() {

    @SuppressWarnings("unchecked")

    public void run() {

    listener.onApplicationEvent(event);

    }

    });

    }

    else {

    listener.onApplicationEvent(event);

    }

    }

    }

    开发者可自己定义一个监听器让其实现ApplicationListener接口,覆盖onApplicationEvent方法,在onApplicationEvent方法中完成开发所需的动作,代码如下所示:


    @Component
    public class SpringContextListener implements ApplicationListener {

    public void onApplicationEvent(ApplicationEvent event) {
    if(event instanceof ContextRefreshedEvent) { //spring容器启动完成
    ...
                    ...
                    ...
    }
    }
    }

  • 相关阅读:
    Tips——RN HTML两端通信
    Tips——RN如何动态地添加删除组件
    Tips——RN webview如何实现首次加载自动登录及后续定时登录
    Between Us 1 生命的起源
    获取当前工作路径和当前模块路径
    从标准输出和读入
    字符串赋值操作
    char,string和CString转换
    字符串结束标志
    Lenovo GTX960M 配置CUDA
  • 原文地址:https://www.cnblogs.com/yuyu666/p/10071806.html
Copyright © 2011-2022 走看看