spring中各個類的作用

發瘋的man發表於2017-10-15

org.springframework.web.context.ContextLoaderListener作用詳解

http://blog.csdn.net/liangxw1/article/details/51037533
作用:在啟動Web容器時,自動裝配Spring applicationContext.xml的配置資訊
ContextLoaderListener監聽器的作用就是啟動Web容器時,自動裝配ApplicationContext的配置資訊。因為它實現了ServletContextListener這個介面,在web.xml配置這個監聽器,啟動容器時,就會預設執行它實現的方法
在ContextLoaderListener中關聯了ContextLoader這個類,所以整個載入配置過程由ContextLoader來完成
Spring在web下的入口在配置檔案web.xml的監聽器中

<listener>  
        <listener-class>  
          org.springframework.web.context.ContextLoaderListener  
        </listener-class>  
</listener>  
<context-param>  
    <param-name>contextConfigLocation</param-name>  
     <param-value>classpath:conf/spring/applicationContext.xml</param-value>  
</context-param>  

上述是在web.xml中的配置資訊。

相關文章