Spring 框架學(xué)習(xí)(二):Spring 應(yīng)用配置文件解析

[TOC]

Spring 框架學(xué)習(xí)(二):Spring 應(yīng)用配置文件解析

初學(xué) Spring 的時(shí)候疗琉,只是照貓畫虎画饥,對(duì)于每一項(xiàng)配置的由來并不十分了解布疙。這里嗜历,我們深入了解一下邻吭,這些配置都起到了什么作用教沾?

web.xml

應(yīng)用啟動(dòng)的時(shí)候在抛,Tomcat 容器會(huì)讀取 web.xml 配置文件褥伴,一個(gè)正常的 web.xml 示例如下:

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
    http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
    
    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>classpath:spring/applicationContext.xml</param-value>
    </context-param>
    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>
    <listener>
        <listener-class>org.springframework.web.context.request.RequestContextListener</listener-class>
    </listener>

    <servlet>
        <servlet-name>spring</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <init-param>
            <param-name>contextConfigLocation</param-name>
            <param-value>classpath:spring/mvc.xml</param-value>
        </init-param>
        <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
        <servlet-name>spring</servlet-name>
        <url-pattern>/</url-pattern>
    </servlet-mapping>

    <servlet-mapping>
        <servlet-name>default</servlet-name>
        <url-pattern>*.css</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
        <servlet-name>default</servlet-name>
        <url-pattern>*.gif</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
        <servlet-name>default</servlet-name>
        <url-pattern>*.jpg</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
        <servlet-name>default</servlet-name>
        <url-pattern>*.js</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
        <servlet-name>default</servlet-name>
        <url-pattern>*.html</url-pattern>
    </servlet-mapping>

    <filter>
        <filter-name>http_filter</filter-name>
        <filter-class>com.xxx.HttpFilter</filter-class>
    </filter>
    <filter-mapping>
        <filter-name>http_filter</filter-name>
        <url-pattern>/api/search.json</url-pattern>
    </filter-mapping>
</web-app>

context-param 節(jié)點(diǎn)存儲(chǔ)的鍵值對(duì)會(huì)被存入 ServletContext 中腥沽,后續(xù)可以通過其 getInitParameter 得到其值逮走,

ServletContext sc;
String configLocationParam = sc.getInitParameter("contextConfigLocation");

listener 節(jié)點(diǎn)存放的 ContextLoaderListene 類實(shí)現(xiàn)了接口 ServletContextListener,會(huì)監(jiān)聽 Web 容器的初始化和關(guān)閉今阳,做相應(yīng)的初始化和銷毀工作:

public interface ServletContextListener extends EventListener {
    void contextInitialized(ServletContextEvent var1);

    void contextDestroyed(ServletContextEvent var1);
}

Spring 容器就是在 ContextLoaderListener 的 contextInitialized 方法中被初始化:

public class ContextLoaderListener extends ContextLoader implements ServletContextListener {
    public void contextInitialized(ServletContextEvent event) {
        this.contextLoader = this.createContextLoader();
        if(this.contextLoader == null) {
            this.contextLoader = this;
        }

        this.contextLoader.initWebApplicationContext(event.getServletContext());
    }
}

listener 節(jié)點(diǎn)存放的另一個(gè)類 RequestContextListener 實(shí)現(xiàn)了接口 ServletRequestListener师溅,會(huì)監(jiān)聽每次 HTTP 請(qǐng)求,管理作用域?yàn)?Request 的 bean盾舌。對(duì)于作用域?yàn)?request 的 bean墓臭,就會(huì)在請(qǐng)求進(jìn)來的時(shí)候創(chuàng)建,結(jié)束的時(shí)候銷毀矿筝。

public interface ServletRequestListener extends EventListener {
    void requestDestroyed(ServletRequestEvent var1);
    void requestInitialized(ServletRequestEvent var1);
}

這其中 ContextLoaderListener 是必須的起便,RequestContextListener 是可選的。

servlet 節(jié)點(diǎn)用于配置處理 HTTP 請(qǐng)求的 HttpServlet 實(shí)現(xiàn)類,具體處理哪些請(qǐng)求是配置在 servlet-mapping 里的榆综。DispatcherServlet 實(shí)現(xiàn)的是 MVC 模式中的控制器妙痹,負(fù)責(zé)分發(fā)請(qǐng)求。所有的 Web 請(qǐng)求都需要經(jīng)過它來處理鼻疮,進(jìn)行轉(zhuǎn)發(fā)怯伊、匹配、數(shù)據(jù)處理后判沟,轉(zhuǎn)由頁面進(jìn)行呈現(xiàn)耿芹。在初始化時(shí)會(huì)解析 contextConfigLocation 參數(shù)配置的文件,建立 MVC 子容器挪哄。

filter 節(jié)點(diǎn)配置過濾器 Filter吧秕,可以對(duì) HTTP 請(qǐng)求做一些過濾、校驗(yàn)迹炼、日志監(jiān)控記錄的工作砸彬,具體適配的請(qǐng)求 url 配置在 filter-mapping 節(jié)點(diǎn)。

applicationContext.xml

ContextLoaderListener 會(huì)解析 applicationContext.xml 文件來初始化 Spring 容器斯入。常見的配置示例如下:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:aop="http://www.springframework.org/schema/aop"
       xmlns:context="http://www.springframework.org/schema/context"
       xsi:schemaLocation="
       http://www.springframework.org/schema/beans 
       http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
       http://www.springframework.org/schema/aop 
       http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
       http://www.springframework.org/schema/context 
       http://www.springframework.org/schema/context/spring-context-3.0.xsd" default-autowire="byName">
    <!-- 加載參數(shù)配置 -->
    <context:property-placeholder location="classpath:config.properties" ignore-unresolvable="true"/>

    <!-- 自動(dòng)掃描 web 包 ,將帶有注解的類 納入 spring 容器管理 -->
    <context:component-scan base-package="com.xxx.web">
        <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller" />
    </context:component-scan>

    <!-- 創(chuàng)建 bean -->
    <bean id="httpClient" class="com.xxx.http.HttpClient"/>

    <!-- 聲明自動(dòng)為spring容器中那些配置 @AspectJ 切面的 bean 創(chuàng)建代理 -->
    <aop:aspectj-autoproxy/>

    <!-- 加載其他配置文件砂碉,import 的使用使得配置文件也可以模塊化 -->
    <import resource="classpath:xxx.xml"/>
</beans>

我有一個(gè)疑問,為什么要在 component-scan 里 exclude 掉 Controller 呢刻两?這是因?yàn)?Spring 核心模塊并不處理 HTTP 請(qǐng)求增蹭,處理 HTTP 請(qǐng)求的是 Spring MVC 子模塊,兩者使用的是不同的容器:Spring Context 父容器和 Spring MVC 子容器磅摹。Controller 注解的 bean 要在 mvc 容器中創(chuàng)建才能起到作用滋迈,所以要在父容器的配置中排除掉。

在 《Spring 技術(shù)內(nèi)幕》這本書中提到“IOC 容器會(huì)首先向其雙親上下文去 getBean”偏瓤,這跟我們?nèi)粘_\(yùn)行程序的感受不符杀怠,所以到底是先去父容器拿 bean 還是先去子容器拿 bean,我們還是深入源碼看看吧厅克。ApplicationContext 的 getBean 方法實(shí)現(xiàn)在 AbstractApplicationContext 類:

public abstract class AbstractApplicationContext extends DefaultResourceLoader implements ConfigurableApplicationContext, DisposableBean {
    public <T> T getBean(Class<T> requiredType) throws BeansException {
        return this.getBeanFactory().getBean(requiredType);
    }
}

該方法調(diào)用了 BeanFactory 的 getBean 方法赔退,從 AbstractBeanFactory 類的 getBean 方法中看到,的確是優(yōu)先使用子容器的 bean:

    public Object getBean(String name) throws BeansException {
        return this.doGetBean(name, (Class)null, (Object[])null, false);
    }
    protected <T> T doGetBean(String name, Class<T> requiredType, final Object[] args, boolean typeCheckOnly) throws BeansException {
        final String beanName = this.transformedBeanName(name);
        Object sharedInstance = this.getSingleton(beanName);
        Object bean;
        if(sharedInstance != null && args == null) {
            // 省略
        } else {
            if(this.isPrototypeCurrentlyInCreation(beanName)) {
                throw new BeanCurrentlyInCreationException(beanName);
            }

            BeanFactory ex = this.getParentBeanFactory();
            // containsBeanDefinition 返回 false证舟,即當(dāng)前容器不存在 bean硕旗,才去父容器獲取
            if(ex != null && !this.containsBeanDefinition(beanName)) {
                String var21 = this.originalBeanName(name);
                if(args != null) {
                    return ex.getBean(var21, args);
                }

                return ex.getBean(var21, requiredType);
            }
            // 省略其他。女责。漆枚。
    }

    private final Map<String, BeanDefinition> beanDefinitionMap = new ConcurrentHashMap();
    // 此方法在 DefaultListableBeanFactory 類中
    public boolean containsBeanDefinition(String beanName) {
        Assert.notNull(beanName, "Bean name must not be null");
        return this.beanDefinitionMap.containsKey(beanName);
    }    

mvc.xml

spring mvc 子容器初始化依賴 mvc.xml,此文件具體名稱是和 DispatcherServlet 配置在一起的參數(shù)抵知。

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:p="http://www.springframework.org/schema/p"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:util="http://www.springframework.org/schema/util"
       xmlns:mvc="http://www.springframework.org/schema/mvc"
       xsi:schemaLocation="
        http://www.springframework.org/schema/util
        http://www.springframework.org/schema/util/spring-util-3.2.xsd
        http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context-3.2.xsd
        http://www.springframework.org/schema/mvc
        http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd">
    <!-- 掃描 Controller -->
    <context:component-scan base-package="com.xxx.controller" use-default-filters="false">
        <context:include-filter type="annotation" expression="org.springframework.stereotype.Controller" />
        <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Service" />
    </context:component-scan>
    <!-- HTTP 請(qǐng)求適配器 -->
    <bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter">
        <property name="messageConverters">
            <list>
                <!-- 使用 Jackson 的 ObjectMapper 讀取/編寫 JSON 數(shù)據(jù)墙基。它轉(zhuǎn)換媒體類型為 application/json 的數(shù)據(jù)软族。 -->
                <bean class="org.springframework.http.converter.json.MappingJacksonHttpMessageConverter"/>
            </list>
        </property>
    </bean>

    <!-- 配置 velocity 引擎 -->
    <bean id="velocityConfig" class="org.springframework.web.servlet.view.velocity.VelocityConfigurer">
        <property name="resourceLoaderPath" value="/WEB-INF/views/vm/" />
        <property name="configLocation" value="classpath:velocity.properties" />
    </bean>

    <!-- 配置視圖解析器 -->
    <bean class="org.springframework.web.servlet.view.ContentNegotiatingViewResolver">
        <property name="ignoreAcceptHeader" value="true"/>
        <property name="mediaTypes">
            <map>
                <entry key="json" value="application/json" />
                <entry key="xml" value="application/xml" />
                <entry key="jsonp" value="application/javascript" />
            </map>
        </property>
        <property name="favorParameter" value="false"/>
        <property name="viewResolvers">
            <list>
                <!-- vm 視圖解析器 -->
                <bean id="velocityViewResolver" class="org.springframework.web.servlet.view.velocity.VelocityViewResolver">
                    <property name="suffix" value=".vm" />
                </bean>
                <!-- jsp 視圖處理器 -->
                <bean id="jspViewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
                    <property name="viewClass" value="org.springframework.web.servlet.view.JstlView"/>
                    <property name="prefix" value="/WEB-INF/views/jsp/"/>
                    <property name="suffix" value=".jsp"/>
                </bean>
                <bean class="org.springframework.web.servlet.view.BeanNameViewResolver" />
            </list>
        </property>
        <property name="defaultViews">
            <list>
                <bean class="org.springframework.web.servlet.view.json.MappingJacksonJsonView" />
            </list>
        </property>
    </bean>

    <mvc:interceptors>
        <mvc:interceptor>
            <!-- 對(duì)所有的請(qǐng)求使用 CommonInterceptor 處理 -->
            <mvc:mapping path="/**" />
            <bean class="com.xxx.web.interceptor.CommonInterceptor"></bean>
        </mvc:interceptor>
    </mvc:interceptors>
</beans>

此處的 component-scan 中要排除掉 Service 注解,那么如果不排除會(huì)有什么問題嗎残制?多數(shù)情況下也不會(huì)有問題立砸,但是如果你用到了 AOP,那么由于這里沒有排除 Service 注解初茶,Controller 用到的 Service 既會(huì)出現(xiàn)在父容器颗祝,也會(huì)出現(xiàn)在子容器,但是只有父容器中的 Service 會(huì)被 AOP 處理恼布,然而 Controller 優(yōu)先使用同一個(gè)容器中的 Service螺戳,就會(huì)導(dǎo)致其調(diào)用了沒有被 AOP 代理的服務(wù)。

總結(jié)一下折汞,mvc.xml 里存放的基本都是跟處理 HTTP 請(qǐng)求相關(guān)的配置倔幼。

參考資料

  1. 關(guān)于XML文檔的xmlns、xmlns:xsi和xsi:schemaLocation
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末字支,一起剝皮案震驚了整個(gè)濱河市凤藏,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌堕伪,老刑警劉巖,帶你破解...
    沈念sama閱讀 211,265評(píng)論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件栗菜,死亡現(xiàn)場離奇詭異欠雌,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)疙筹,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,078評(píng)論 2 385
  • 文/潘曉璐 我一進(jìn)店門富俄,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人而咆,你說我怎么就攤上這事霍比。” “怎么了暴备?”我有些...
    開封第一講書人閱讀 156,852評(píng)論 0 347
  • 文/不壞的土叔 我叫張陵悠瞬,是天一觀的道長。 經(jīng)常有香客問我涯捻,道長浅妆,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,408評(píng)論 1 283
  • 正文 為了忘掉前任障癌,我火速辦了婚禮凌外,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘涛浙。我一直安慰自己康辑,他們只是感情好摄欲,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,445評(píng)論 5 384
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著疮薇,像睡著了一般胸墙。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上惦辛,一...
    開封第一講書人閱讀 49,772評(píng)論 1 290
  • 那天劳秋,我揣著相機(jī)與錄音,去河邊找鬼胖齐。 笑死玻淑,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的呀伙。 我是一名探鬼主播补履,決...
    沈念sama閱讀 38,921評(píng)論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼剿另!你這毒婦竟也來了箫锤?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,688評(píng)論 0 266
  • 序言:老撾萬榮一對(duì)情侶失蹤雨女,失蹤者是張志新(化名)和其女友劉穎谚攒,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體氛堕,經(jīng)...
    沈念sama閱讀 44,130評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡馏臭,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,467評(píng)論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了讼稚。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片括儒。...
    茶點(diǎn)故事閱讀 38,617評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖锐想,靈堂內(nèi)的尸體忽然破棺而出帮寻,到底是詐尸還是另有隱情,我是刑警寧澤赠摇,帶...
    沈念sama閱讀 34,276評(píng)論 4 329
  • 正文 年R本政府宣布固逗,位于F島的核電站,受9級(jí)特大地震影響蝉稳,放射性物質(zhì)發(fā)生泄漏抒蚜。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,882評(píng)論 3 312
  • 文/蒙蒙 一耘戚、第九天 我趴在偏房一處隱蔽的房頂上張望嗡髓。 院中可真熱鬧,春花似錦收津、人聲如沸饿这。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,740評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽长捧。三九已至嚣鄙,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間串结,已是汗流浹背哑子。 一陣腳步聲響...
    開封第一講書人閱讀 31,967評(píng)論 1 265
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留肌割,地道東北人卧蜓。 一個(gè)月前我還...
    沈念sama閱讀 46,315評(píng)論 2 360
  • 正文 我出身青樓,卻偏偏與公主長得像把敞,于是被迫代替她去往敵國和親弥奸。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,486評(píng)論 2 348

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

  • Spring Cloud為開發(fā)人員提供了快速構(gòu)建分布式系統(tǒng)中一些常見模式的工具(例如配置管理奋早,服務(wù)發(fā)現(xiàn)盛霎,斷路器,智...
    卡卡羅2017閱讀 134,629評(píng)論 18 139
  • Spring Boot 參考指南 介紹 轉(zhuǎn)載自:https://www.gitbook.com/book/qbgb...
    毛宇鵬閱讀 46,773評(píng)論 6 342
  • 文章作者:Tyan博客:noahsnail.com 3.4 Dependencies A typical ente...
    SnailTyan閱讀 4,133評(píng)論 2 7
  • 基礎(chǔ)準(zhǔn)則:手機(jī)APP端數(shù)據(jù)接口(api)根據(jù)后臺(tái)定制制度分為正式環(huán)境api和測試環(huán)境api耽装。 重點(diǎn):...
    TendoGai閱讀 731評(píng)論 0 0
  • 如果你的目標(biāo)太多太大愤炸,給你幼小稚嫩的小小心臟造成了慘絕人寰的巨大的壓力,那就不妨試試削減目標(biāo)掉奄,先去做一個(gè)毫無壓力小...
    clfcool閱讀 443評(píng)論 3 11