Spring contextConfigLocation默認加載文件的位置

在使用Spring框架的時候,若是咱們使用的是XML文件配置Bean的方式的話,咱們每每會在web.xml裏面配置以下內容:web

    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>/WEB-INF/config/spring-bean-config.xml</param-value>
    </context-param>
    
    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>

這是由於若是咱們有配置ContextLoaderListener, Spring會去web.xml中看咱們是否有定義contextConfigLocation這個參數,若是有則Spring容器(Bean工廠)會把定義在該xml文件中的bean加載到容器中,那若是沒有定義contextConfigLocation參數,Spring會怎麼辦?web服務器啓動的時候會不會報錯呢?spring

Spring有一個概念就是約定優於配置,也就是說,即便你沒有顯示定義xml文件的位置,Spring容器會到一個約定的地方去找該文件,若是找不到就要報FileNotFoundException了,咱們來看看下面代碼段:服務器

"/WEB-INF/applicationContext.xml" 就是默認的文件地址了,若是你使用了Spring MVC,你確定要到web.xml裏面定義DispatcherServletapp

    <servlet>
        <servlet-name>dispatcherServlet</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    </servlet>

這個時候若是你沒有顯示配置contextConfigLocation參數的話,Spring會到該默認路徑下加載配置文件"WEB-INF/dispatcherServlet-servlet.xml", 若是不存在就報異常。框架

以上源碼存在於XmlWebApplicationContext.spa

相關文章
相關標籤/搜索