跟踪Spring源码(一)
一、上下文加载器 要在项目中使用Spring框架,需要在web.xml做如下配置: <!--contextConfigLocation在 ContextLoaderListener类中的默认值是 /WEB-INF/applicationContext.xml--> <context-param> <param-name>contextConfigLocation</param-name> <param-value>/WEB-INF/applicationContext.xml</param-value> <!-- <param-value>classpath:applicationContext*.xml</param-value> --> </context-param> <listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener> 以下为类ContextLoaderListener的声明: public class ContextLoaderListener extends ContextLoader implements ServletContextListener{ // 上下文加载器 private