在web.xml中配置java
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>web
ContextLoaderListener的做用就是啓動Web容器時,自動裝配ApplicationContext.xml的配置信息。由於它實現了ServletContextListener這個接口,在web.xml配置這個監聽器,啓動容器時,就會默認執行它實現的方法。
ApplicationContext.xml這個配置文件部通常默認放置在。applicationContext的默認的路徑是」/WEB-INF/applicationContext.xml。也能夠在web.xml中配置該文件的其餘位置,配置以下:spring
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>
classpath:applicationContext.xml
classpath:applicationContext-security.xml;
</param-value>
</context-param>app
如下詳解spa
org.springframework.web.context.ContextLoaderListener類實現了javax.servlet.ServletContextListener接口。ServletContextListener接口可以監聽ServletContext對象的生命週期,由於每一個web應用僅有一個ServletContext對象,故實際上該接口監聽的是整個web應用。code
實現該接口的類在web.xml中做爲監聽器配置後,當web應用啓動後,會觸發ServletContextEvent事件,調用ContextLoaderListener的contextInitialized(ServletContextEvent sce)方法。xml
ContextLoaderListener經過一個ContextLoader對象來初始化Spring容器。在contextInitialized方法中調用contextLoader.initWebApplicationContext(event.getServletContext())。對象
ContextLoader類的initWebApplicationContext方法便可返回一個WebApplicationContext對象context。並經過 servletContext.setAttribute(WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE, context)將WebApplicationContext對象放置在ServletContext對象中。initWebApplicationContext方法經過調用如下方法實例化並設置WebApplicationContext對象。blog
protected WebApplicationContext createWebApplicationContext(ServletContext servletContext, ApplicationContext parent) throws BeansException { Class contextClass = determineContextClass(servletContext);//經過servletContext肯定WebApplicationContext的具體類型 if(!(org.springframework.web.context.ConfigurableWebApplicationContext.class).isAssignableFrom(contextClass)) { throw new ApplicationContextException("Custom context class [" + contextClass.getName() + "] is not of type [" + (org.springframework.web.context.ConfigurableWebApplicationContext.class).getName() + "]"); } else { ConfigurableWebApplicationContext wac = (ConfigurableWebApplicationContext)BeanUtils.instantiateClass(contextClass); wac.setParent(parent); wac.setServletContext(servletContext); wac.setConfigLocation(servletContext.getInitParameter("contextConfigLocation"));//設置配置文件的路徑名 customizeContext(servletContext, wac); wac.refresh(); return wac; } }
所以能夠經過WebApplicationContextUtils.getWebApplicationContext(ServletContext sc)獲取WebApplicationContext。內部實現是經過servletContext對象查找該對象,屬性名爲WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE。接口