首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

Spring源码阅览:ContextLoaderListener

2012-11-05 
Spring源码阅读:ContextLoaderListenerspring在web中的启动是由ContextLoaderListener开始的。ContextLoade

Spring源码阅读:ContextLoaderListener
spring在web中的启动是由ContextLoaderListener开始的。ContextLoaderListener实现了ServlContextListener接口,并继承了ContextLoader类。

                wac.setParent(parent);        wac.setServletContext(sc);       //获取configLocation的配置        wac.setConfigLocation(sc.getInitParameter(CONFIG_LOCATION_PARAM));        customizeContext(sc, wac);// 用于自定义ContextClass时,扩充自定义Context        wac.refresh();// 完成context构造过程。

热点排行