53--Web應用上下文環(huán)境創(chuàng)建

1. Web應用上下文環(huán)境創(chuàng)建簡析

通過上一節(jié)的分析,找到了SpringMVC源碼分析的入口脉让,接下來看Web應用上下文環(huán)境創(chuàng)建過程桂敛。打開ContextLoader類的initWebApplicationContext方法:

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!");
    }

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

    try {
        // 將上下文存儲在本地實例變量中功炮,以確保它在ServletContext關(guān)閉時可用。
        // Store context in local instance variable, to guarantee that it is available on ServletContext shutdown.
        if (this.context == null) {
            // 1.創(chuàng)建web應用上線文環(huán)境
            this.context = createWebApplicationContext(servletContext);
        }
        if (this.context instanceof ConfigurableWebApplicationContext) {
            ConfigurableWebApplicationContext cwac = (ConfigurableWebApplicationContext) this.context;
            // 如果當前上下文環(huán)境未激活术唬,那么其只能提供例如設置父上下文薪伏、設置上下文id等功能
            if (!cwac.isActive()) {
                // The context has not yet been refreshed -> provide services such as
                // setting the parent context, setting the application context id, etc
                if (cwac.getParent() == null) {
                    // The context instance was injected without an explicit parent ->
                    // determine parent for root web application context, if any.
                    ApplicationContext parent = loadParentContext(servletContext);
                    cwac.setParent(parent);
                }
                // 2.配置并刷新當前上下文環(huán)境
                configureAndRefreshWebApplicationContext(cwac, servletContext);
            }
        }

        // 將當前上下文環(huán)境存儲到ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE變量中
        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.isInfoEnabled()) {
            long elapsedTime = System.currentTimeMillis() - startTime;
            logger.info("Root WebApplicationContext initialized in " + elapsedTime + " ms");
        }

        return this.context;
    }
    catch (RuntimeException | Error ex) {
        logger.error("Context initialization failed", ex);
        servletContext.setAttribute(WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE, ex);
        throw ex;
    }
}

該方法一共涉及兩個比較重要的點:

  • 創(chuàng)建web應用上線文環(huán)境
  • 配置并刷新當前上下文環(huán)境
2. 創(chuàng)建web應用上線文環(huán)境
/**
 * 為當前類加載器實例化根WebApplicationContext,可以是默認上線文加載類或者自定義上線文加載類
 */
protected WebApplicationContext createWebApplicationContext(ServletContext sc) {
    // 1.確定實例化WebApplicationContext所需的類
    Class<?> contextClass = determineContextClass(sc);
    if (!ConfigurableWebApplicationContext.class.isAssignableFrom(contextClass)) {
        throw new ApplicationContextException("Custom context class [" + contextClass.getName() +
                "] is not of type [" + ConfigurableWebApplicationContext.class.getName() + "]");
    }
    // 2.實例化得到的WebApplicationContext類
    return (ConfigurableWebApplicationContext) BeanUtils.instantiateClass(contextClass);
}

邏輯很簡單,得到一個類粗仓,將其實例化嫁怀。我們經(jīng)常說的web應用上下文環(huán)境,是不是比我們想象的還要簡單借浊。塘淑。。

那么要得到或者明確哪個類呢巴碗? 繼續(xù)看代碼:

/**
 * 返回WebApplicationContext(web應用上線文環(huán)境)實現(xiàn)類
 * 如果沒有自定義默認返回XmlWebApplicationContext類
 *
 * 兩種方式:
 * 1朴爬。非自定義:通過ContextLoader類的靜態(tài)代碼塊加載ContextLoader.properties配置文件并解析,該配置文件中的默認類即XmlWebApplicationContext
 * 2橡淆。自定義: 通過在web.xml文件中召噩,配置context-param節(jié)點,并配置param-name為contextClass的自己點逸爵,如
 *      <context-param>
 *          <param-name>contextClass</param-name>
 *          <param-value>org.springframework.web.context.support.MyWebApplicationContext</param-value>
 *      </context-param>
 *
 * Return the WebApplicationContext implementation class to use, either the
 * default XmlWebApplicationContext or a custom context class if specified.
 * @param servletContext current servlet context
 * @return the WebApplicationContext implementation class to use
 * @see #CONTEXT_CLASS_PARAM
 * @see org.springframework.web.context.support.XmlWebApplicationContext
 */
protected Class<?> determineContextClass(ServletContext servletContext) {
    String contextClassName = servletContext.getInitParameter(CONTEXT_CLASS_PARAM);
    // 1.自定義
    if (contextClassName != null) {
        try {
            return ClassUtils.forName(contextClassName, ClassUtils.getDefaultClassLoader());
        }
        catch (ClassNotFoundException ex) {
            throw new ApplicationContextException("Failed to load custom context class [" + contextClassName + "]", ex);
        }
    }
    // 2.默認
    else {
        // 根據(jù)靜態(tài)代碼塊的加載這里 contextClassName = XmlWebApplicationContext
        contextClassName = defaultStrategies.getProperty(WebApplicationContext.class.getName());
        try {
            return ClassUtils.forName(contextClassName, ContextLoader.class.getClassLoader());
        }
        catch (ClassNotFoundException ex) {
            throw new ApplicationContextException("Failed to load default context class [" + contextClassName + "]", ex);
        }
    }
}

自定義方式注釋里已經(jīng)寫的很清晰了具滴,我們來看默認方式,這里涉及到了一個靜態(tài)變量defaultStrategies师倔,并在下面的靜態(tài)代碼塊中對其進行了初始化操作:

private static final String DEFAULT_STRATEGIES_PATH = "ContextLoader.properties";

private static final Properties defaultStrategies;

/**
 * 靜態(tài)代碼加載默認策略,即默認的web應用上下文
 * DEFAULT_STRATEGIES_PATH --> ContextLoader.properties
 *
 * org.springframework.web.context.WebApplicationContext=org.springframework.web.context.support.XmlWebApplicationContext
 */
static {
    // Load default strategy implementations from properties file.
    // This is currently strictly internal and not meant to be customized by application developers.
    try {
        ClassPathResource resource = new ClassPathResource(DEFAULT_STRATEGIES_PATH, ContextLoader.class);
        defaultStrategies = PropertiesLoaderUtils.loadProperties(resource);
    }
    catch (IOException ex) {
        throw new IllegalStateException("Could not load 'ContextLoader.properties': " + ex.getMessage());
    }
}

這段代碼對ContextLoader.properties進行了解析构韵,那么ContextLoader.properties中存儲的內(nèi)容是什么呢?

# Default WebApplicationContext implementation class for ContextLoader.
# Used as fallback when no explicit context implementation has been specified as context-param.
# Not meant to be customized by application developers.

org.springframework.web.context.WebApplicationContext=org.springframework.web.context.support.XmlWebApplicationContext

很簡單趋艘,通過上面的操作疲恢,我們就可以確定contextClassName是XmlWebApplicationContext,跟我們之前分析的ApplicationContext差不多瓷胧,只是在其基礎(chǔ)上又提供了對web的支持显拳。接下來通過BeanUtils.instantiateClass(contextClass)將其實例化即可。

3.配置并刷新當前上下文環(huán)境
/**
 * 配置并刷新當前web應用上下文
 */
protected void configureAndRefreshWebApplicationContext(ConfigurableWebApplicationContext wac, ServletContext sc) {
    /**
     * 1.配置應用程序上下文id
     * 如果當前應用程序上下文id仍然設置為其原始默認值,則嘗試為其設置自定義上下文id搓萧,如果有的話杂数。
     * 在web.xml中配置
     * <context-param>
     *      <param-name>contextId</param-name>
     *      <param-value>jack-2019-01-02</param-value>
     *  </context-param>
     */
    if (ObjectUtils.identityToString(wac).equals(wac.getId())) {
        String idParam = sc.getInitParameter(CONTEXT_ID_PARAM);
        if (idParam != null) {
            wac.setId(idParam);
        }
        // 無自定義id則為其生成默認id
        else {
            wac.setId(ConfigurableWebApplicationContext.APPLICATION_CONTEXT_ID_PREFIX +
                    ObjectUtils.getDisplayString(sc.getContextPath()));
        }
    }

    wac.setServletContext(sc);

    /**
     * 2.設置配置文件路徑,如
     * <context-param>
     *      <param-name>contextConfigLocation</param-name>
     *      <param-value>classpath:spring-context.xml</param-value>
     *  </context-param>
     */
    String configLocationParam = sc.getInitParameter(CONFIG_LOCATION_PARAM);
    if (configLocationParam != null) {
        wac.setConfigLocation(configLocationParam);
    }

    // The wac environment's #initPropertySources will be called in any case when the context
    // is refreshed; do it eagerly here to ensure servlet property sources are in place for
    // use in any post-processing or initialization that occurs below prior to #refresh
    // 3.創(chuàng)建ConfigurableEnvironment并配置初始化參數(shù)
    ConfigurableEnvironment env = wac.getEnvironment();
    if (env instanceof ConfigurableWebEnvironment) {
        ((ConfigurableWebEnvironment) env).initPropertySources(sc, null);
    }

    // 4.自定義配置上下文環(huán)境
    customizeContext(sc, wac);

    // 5.刷新上下文環(huán)境
    wac.refresh();
}

前三個步驟比較簡單瘸洛,在前面的博客中多少有些介紹揍移,我們來看自定義配置上下文環(huán)境和刷新上下文環(huán)境

3.1 自定義配置上下文環(huán)境
protected void customizeContext(ServletContext sc, ConfigurableWebApplicationContext wac) {
    /**
     * 加載并實例化web.xml配置文件中的 globalInitializerClasses 和 contextInitializerClasses 配置
     *
     * globalInitializerClasses 代表所有的web application都會應用
     * contextInitializerClasses 代表只有當前的web application會使用
     * 例如,在web.xml配置文件中:
     *  <context-param>
     *      <param-name>contextInitializerClasses</param-name>
     *      <param-value>com.lyc.cn.init.MyContextInitializerClasses</param-value>
     *  </context-param>
     *
     *  容器將會調(diào)用自定義的initialize方法反肋,其實就在這段代碼的下方那伐。。。
     */
    List<Class<ApplicationContextInitializer<ConfigurableApplicationContext>>> initializerClasses =
            determineContextInitializerClasses(sc);

    for (Class<ApplicationContextInitializer<ConfigurableApplicationContext>> initializerClass : initializerClasses) {
        Class<?> initializerContextClass =
                GenericTypeResolver.resolveTypeArgument(initializerClass, ApplicationContextInitializer.class);
        if (initializerContextClass != null && !initializerContextClass.isInstance(wac)) {
            throw new ApplicationContextException(String.format(
                    "Could not apply context initializer [%s] since its generic parameter [%s] " +
                    "is not assignable from the type of application context used by this " +
                    "context loader: [%s]", initializerClass.getName(), initializerContextClass.getName(),
                    wac.getClass().getName()));
        }
        this.contextInitializers.add(BeanUtils.instantiateClass(initializerClass));
    }

    AnnotationAwareOrderComparator.sort(this.contextInitializers);
    for (ApplicationContextInitializer<ConfigurableApplicationContext> initializer : this.contextInitializers) {
        initializer.initialize(wac);
    }
}

該實現(xiàn)很簡單喧锦,我們只要在web.xml中自定義contextInitializerClasses和globalInitializerClasses并提供實現(xiàn)類即可:
如:

<context-param>
    <param-name>contextInitializerClasses</param-name>
    <param-value>com.lyc.cn.init.MyContextInitializerClasses</param-value>
</context-param>
public class MyContextInitializerClasses implements ApplicationContextInitializer<XmlWebApplicationContext> {
    /**
     * Initialize the given application context.
     * @param applicationContext the application to configure
     */
    @Override
    public void initialize(XmlWebApplicationContext applicationContext) {
        System.out.println("MyContextInitializerClasses initialize ...");
        System.out.println("MyContextInitializerClasses " + applicationContext.toString());
    }
}
3.2 刷新上下文環(huán)境
public void refresh() throws BeansException, IllegalStateException {
    synchronized (this.startupShutdownMonitor) {
        // 1读规、準備刷新上下文環(huán)境
        prepareRefresh();
        // 2、讀取xml并初始化BeanFactory
        ConfigurableListableBeanFactory beanFactory = obtainFreshBeanFactory();
        // 3燃少、填充BeanFactory功能
        prepareBeanFactory(beanFactory);
        try {
            // 4、子類覆蓋方法額外處理(空方法)
            postProcessBeanFactory(beanFactory);
            // 5铃在、調(diào)用BeanFactoryPostProcessor
            invokeBeanFactoryPostProcessors(beanFactory);
            // 6阵具、注冊BeanPostProcessors
            registerBeanPostProcessors(beanFactory);
            // 7、初始化Message資源
            initMessageSource();
            // 8定铜、初始事件廣播器
            initApplicationEventMulticaster();
            // 9阳液、留給子類初始化其他Bean(空的模板方法)
            onRefresh();
            // 10、注冊事件監(jiān)聽器
            registerListeners();
            // 11揣炕、初始化其他的單例Bean(非延遲加載的)
            finishBeanFactoryInitialization(beanFactory);
            // 12帘皿、完成刷新過程,通知生命周期處理器lifecycleProcessor刷新過程,同時發(fā)出ContextRefreshEvent通知
            finishRefresh();
        }
        catch (BeansException ex) {
            // 13、銷毀已經(jīng)創(chuàng)建的Bean
            destroyBeans();
            // 14畸陡、重置容器激活標簽
            cancelRefresh(ex);
            throw ex;
        }
        finally {
            resetCommonCaches();
        }
    }
}

這段代碼在前面的博客中已經(jīng)詳細的分析過了鹰溜,感興趣的同學查看前面的博客吧! 到這里Web應用上下文環(huán)境創(chuàng)建過程就結(jié)束了丁恭。

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末曹动,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子牲览,更是在濱河造成了極大的恐慌墓陈,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,723評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件第献,死亡現(xiàn)場離奇詭異贡必,居然都是意外死亡,警方通過查閱死者的電腦和手機庸毫,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,485評論 2 382
  • 文/潘曉璐 我一進店門仔拟,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人岔绸,你說我怎么就攤上這事理逊。” “怎么了盒揉?”我有些...
    開封第一講書人閱讀 152,998評論 0 344
  • 文/不壞的土叔 我叫張陵晋被,是天一觀的道長。 經(jīng)常有香客問我刚盈,道長羡洛,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,323評論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮欲侮,結(jié)果婚禮上崭闲,老公的妹妹穿的比我還像新娘。我一直安慰自己威蕉,他們只是感情好刁俭,可當我...
    茶點故事閱讀 64,355評論 5 374
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著韧涨,像睡著了一般牍戚。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上虑粥,一...
    開封第一講書人閱讀 49,079評論 1 285
  • 那天如孝,我揣著相機與錄音,去河邊找鬼娩贷。 笑死第晰,一個胖子當著我的面吹牛,可吹牛的內(nèi)容都是我干的彬祖。 我是一名探鬼主播茁瘦,決...
    沈念sama閱讀 38,389評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼涧至!你這毒婦竟也來了腹躁?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,019評論 0 259
  • 序言:老撾萬榮一對情侶失蹤南蓬,失蹤者是張志新(化名)和其女友劉穎纺非,沒想到半個月后,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體赘方,經(jīng)...
    沈念sama閱讀 43,519評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡烧颖,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,971評論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了窄陡。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片炕淮。...
    茶點故事閱讀 38,100評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖跳夭,靈堂內(nèi)的尸體忽然破棺而出涂圆,到底是詐尸還是另有隱情,我是刑警寧澤币叹,帶...
    沈念sama閱讀 33,738評論 4 324
  • 正文 年R本政府宣布润歉,位于F島的核電站,受9級特大地震影響颈抚,放射性物質(zhì)發(fā)生泄漏踩衩。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,293評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望驱富。 院中可真熱鬧锚赤,春花似錦、人聲如沸褐鸥。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,289評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽晶疼。三九已至酒贬,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間翠霍,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,517評論 1 262
  • 我被黑心中介騙來泰國打工蠢莺, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留寒匙,地道東北人。 一個月前我還...
    沈念sama閱讀 45,547評論 2 354
  • 正文 我出身青樓躏将,卻偏偏與公主長得像锄弱,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子祸憋,可洞房花燭夜當晚...
    茶點故事閱讀 42,834評論 2 345

推薦閱讀更多精彩內(nèi)容

  • 發(fā)現(xiàn) 關(guān)注 消息 iOS 第三方庫会宪、插件、知名博客總結(jié) 作者大灰狼的小綿羊哥哥關(guān)注 2017.06.26 09:4...
    肇東周閱讀 12,029評論 4 62
  • 本文是我自己在秋招復習時的讀書筆記蚯窥,整理的知識點掸鹅,也是為了防止忘記,尊重勞動成果拦赠,轉(zhuǎn)載注明出處哦巍沙!如果你也喜歡,那...
    波波波先森閱讀 12,276評論 6 86
  • Swift1> Swift和OC的區(qū)別1.1> Swift沒有地址/指針的概念1.2> 泛型1.3> 類型嚴謹 對...
    cosWriter閱讀 11,089評論 1 32
  • 改革創(chuàng)新其實是件很有意思的事情荷鼠。 今天圍觀了一場三方博弈句携。企業(yè)以便捷為需求,希望改變規(guī)則允乐,可惜立意太高矮嫉,太過激進,...
    月之閱讀 209評論 0 0
  • 小說中牍疏,這一首的虛擬作者蠢笋,70年代中期愛上一個男人,1990年終于遂愿麸澜。 圖片來自60年代日本電影《秋刀魚之味》挺尿,...
    車槐閱讀 585評論 16 7