Webx启动流程

11 篇文章 0 订阅
2 篇文章 0 订阅

1 WebxContextLoaderListener

      Webx Framework 通过配置在web.xml中的WebxContextLoaderListener来初始化Spring
    
     <!-- 装载/WEB-INF/webx.xml, /WEB-INF/webx-*.xml -->
    <listener>
        <listener-class><strong>com.alibaba.citrus.webx.context.WebxContextLoaderListener</strong></listener-class>
    </listener>
  WebxContextLoaderListener 是ContextLoaderListener的派生类。它定制了自己的ContextLoader——WebxComponentsLoader}       
       
        
<span style="background-color: rgb(240, 240, 240);">  <pre name="code" class="html"> public class WebxContextLoaderListener extends ContextLoaderListener {</span>    
     @Override
    protected final ContextLoader createContextLoader() {
       <strong> return new WebxComponentsLoader()</strong> {

            @Override
            protected Class<? extends WebxComponentsContext> getDefaultContextClass() {
                Class<? extends WebxComponentsContext> defaultContextClass = WebxContextLoaderListener.this
                        .getDefaultContextClass();

                if (defaultContextClass == null) {
                    defaultContextClass = super.getDefaultContextClass();
                }

                return defaultContextClass;
            }
        };
    }

    protected Class<? extends WebxComponentsContext> getDefaultContextClass() {
        return null;
    }
}

WebxComponentsLoader

其与基类ContextLoader相比,定义了一些自己的字段:
 
 
     <pre name="code" class="html">public class WebxComponentsLoader extends ContextLoader {
    private final static Logger log = LoggerFactory.getLogger(WebxComponentsLoader.class);
    private String webxConfigurationName;
    private ServletContext servletContext;
    private WebApplicationContext componentsContext;
    private WebxComponentsImpl components;
    ...
}

 
之后,使用代理模式由WebxComponentsLoader调用initWebApplicationContext继续初始化过程。实际上,initWebApplicationContext是其基类ContextLoader的方法,而WebxComponentsLoader重写了此方法
  
public WebApplicationContext initWebApplicationContext(ServletContext servletContext) throws IllegalStateException,
            BeansException {
        <strong>this.servletContext = servletContext;
        init();

        return super.initWebApplicationContext(servletContext);</strong>
    }

        这里,WebxComponentsLoader获取了servletContext, 通过init方法设置context中 WebxConfiguration的名称。然后继续调用基类的同名方法,root application开始初始化。
    
public WebApplicationContext initWebApplicationContext(ServletContext servletContext) {
		if (servletContext.getAttribute(WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE) != null) {
			throw new IllegalStateException(
					"Cannot initialize context because there is already a root application context present - " +
					"check whether you have multiple ContextLoader* definitions in your web.xml!");
		}

		Log logger = LogFactory.getLog(ContextLoader.class);
		servletContext.log(<strong>"Initializing Spring root WebApplicationContext"</strong>);
		if (logger.isInfoEnabled()) {
			logger.info(<strong>"Root WebApplicationContext: initialization started"</strong>);
		}
		long startTime = System.currentTimeMillis();

		try {
			// Determine parent for root web application context, if any.
			ApplicationContext parent = loadParentContext(servletContext);

			// Store context in local instance variable, to guarantee that
			// it is available on ServletContext shutdown.
			<strong>this.context = createWebApplicationContext(servletContext, parent);</strong>
			servletContext.setAttribute(WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE, this.context);

			ClassLoader ccl = Thread.currentThread().getContextClassLoader();
			if (ccl == ContextLoader.class.getClassLoader()) {
				currentContext = this.context;
			}
			else if (ccl != null) {
				currentContextPerThread.put(ccl, this.context);
			}

			if (logger.isDebugEnabled()) {
				logger.debug("Published root WebApplicationContext as ServletContext attribute with name [" +
						WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE + "]");
			}
			if (logger.isInfoEnabled()) {
				long elapsedTime = System.currentTimeMillis() - startTime;
				logger.info("Root WebApplicationContext: initialization completed in " + elapsedTime + " ms");
			}

			return this.context;
		}
		catch (RuntimeException ex) {
			logger.error("Context initialization failed", ex);
			servletContext.setAttribute(WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE, ex);
			throw ex;
		}
		catch (Error err) {
			logger.error("Context initialization failed", err);
			servletContext.setAttribute(WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE, err);
			throw err;
		}
	}
此方法中最重要的部分是对应用上下文WebApplicationContext的创建

WebApplicationContext

       在createWebApplicationContext方法中,定义了ConfigurableWebApplicationContext 对象wac.
ConfigurableWebApplicationContext wac =
				(ConfigurableWebApplicationContext) <strong>BeanUtils.instantiateClass(contextClass);</strong>
       查看BeanUtils.instantiateClass(contextClass);代码可以发现,此方法就是检查contextClass对象是否为空或者是接口,如果都不是的话则调用contextClass的构造方法构造ContextClass对象,并且转型为ConfigurableWebApplicationContext 。
       

       wac在返回给ContextLoader前,主要完成以下几个过程:
      
                wac.setParent(parent);
		<strong>wac.setServletContext(sc);</strong>
		wac.setConfigLocation(sc.getInitParameter(CONFIG_LOCATION_PARAM));
		<strong>customizeContext(sc, wac);</strong>
		wac.refresh();

      wac.setServletContext(sc);将WebxComponentsLoader的servletContext 传递给 wac。
      customizeContext(sc, wac);定制context, 设置其loader为WebxComponentsLoader。
    
      经过前几个步骤的准备工作后,由refresh方法初始化所有bean。
  
public void refresh() throws BeansException, IllegalStateException {
		synchronized (this.startupShutdownMonitor) {
			// Prepare this context for refreshing.
			prepareRefresh();

			// Tell the subclass to refresh the internal bean factory.
			<strong>ConfigurableListableBeanFactory beanFactory =<strong> obtainFreshBeanFactory();</strong></strong>

			// Prepare the bean factory for use in this context.
			prepareBeanFactory(beanFactory);

			try {
				// Allows post-processing of the bean factory in context subclasses.
				postProcessBeanFactory(beanFactory);

				// Invoke factory processors registered as beans in the context.
				invokeBeanFactoryPostProcessors(beanFactory);

				// Register bean processors that intercept bean creation.
				registerBeanPostProcessors(beanFactory);

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

				// Initialize event multicaster for this context.
				initApplicationEventMulticaster();

				// Initialize other special beans in specific context subclasses.
				onRefresh();

				// Check for listener beans and register them.
				registerListeners();

				// Instantiate all remaining (non-lazy-init) singletons.
				<strong>finishBeanFactoryInitialization(beanFactory);</strong>

				// Last step: publish corresponding event.
				<strong>finishRefresh()</strong>;
			}

			catch (BeansException ex) {
				// Destroy already created singletons to avoid dangling resources.
				destroyBeans();

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

				// Propagate exception to caller.
				throw ex;
			}
		}
	}
</pre>ConfigurableListableBeanFactory beanFactory = obtainFreshBeanFactory(); 这一步骤根据webx.xml的配置获取相关的配置文件。如:</div><div>   </div><div><pre name="code" class="html"><!-- 共享配置。 -->
    <beans:import resource="common/webx-component-and-root.xml" />

    <!-- 异常管道。 -->
    <beans:import resource="common/pipeline-exception.xml" />

    <!-- 资源装载。 -->
    <beans:import resource="common/resources.xml" />

    <!-- URI生成。 -->
    <beans:import resource="common/uris.xml" />

finishRefresh函数通过调用WebxComponentsLoader的finishRefresh方法,初始化所有子components:
protected void finishRefresh() {
        super.finishRefresh();
        getLoader().finishRefresh();
    }

webxComponents中的finishRefresh方法:
 public void finishRefresh() {
        ...

        for (WebxComponent component : components) {
            logInBothServletAndLoggingSystem("Initializing Spring sub WebApplicationContext: " + component.getName());

            WebxComponentContext wcc = (WebxComponentContext) component.getApplicationContext();
            WebxController controller = component.getWebxController();

            wcc.refresh();
            controller.onFinishedProcessContext();
        }

        logInBothServletAndLoggingSystem("WebxComponents: initialization completed");
    }

这里的wcc 是WebxComponentContext, 不同于之前的wac对象(WebxComponent sContext),不会在结束时调用子component进行初始化。


初始化流程草图如下:




  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值