spring中各個類的作用
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中的配置資訊。
相關文章
- Activiti中的各個service的作用
- SQL Server中各個系統表的作用SQLServer
- Elasticsearch 各個埠號作用Elasticsearch
- SQL Server 2005中各個系統表的作用(轉)SQLServer
- 【linux下各個目錄的作用】Linux
- struts2各個jar包的作用JAR
- Hibernate各個jar包作用JAR
- mysql各個安裝包作用MySql
- Spring中Bean的作用域SpringBean
- Spring在ssh中的作用Spring
- Model類的一個return作用
- Java Object類的各個方法JavaObject
- Spring 當中的Bean 作用域SpringBean
- javascript中各類的prototype屬性JavaScript
- ORACLE中各類NAME的簡介Oracle
- Spring Cloud各個元件的配套使用SpringCloud元件
- Spring中Bean的作用域有哪些?SpringBean
- ASMCMD中的各個命令ASM
- Android SDK下各個資料夾作用Android
- spring的作用Spring
- Linux系統下各個目錄的作用詳解!Linux
- 這兩個java類的作用是什麼?Java
- 各種工具在軟體測試中的作用,值得收藏!
- 關於ResultFilter類中NULL_INT的作用????FilterNull
- Java中各Set實現類的效能分析Java
- 關於 Spring Boot 中建立物件的疑慮 → @Bean 與 @Component 同時作用同一個類,會怎麼樣?Spring Boot物件Bean
- Spring在開發專案中起的作用Spring
- 何為Spring中的配置類?Spring
- Spring的作用域以及RequestContextListener作用SpringContext
- 淘寶詳情API介面在各種應用中的作用性API
- web.xml中的contextConfigLocation在spring中的作用WebXMLContextSpring
- linux各資料夾的作用Linux
- SerializationFeature各列舉項的作用
- Spring Cloud中如何保證各個微服務之間呼叫的安全性SpringCloud微服務
- 註解式專案開發!詳細解析Java中各個註解的作用和使用方式Java
- 在MFC類中各種類的指標的獲取和應用指標
- Linux各目錄作用Linux
- Spring框架的基本作用Spring框架