ContextLoaderListener & DispatcherServlet
老师好,我今天在公司的项目上看到这样的一段配置,有些不理解。
<?xml version="1.0" encoding="UTF-8"?> <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5"> <display-name>Archetype Created Web Application</display-name> <context-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:applicationContext.xml</param-value> </context-param> <filter> <filter-name>characterEncodingFilter</filter-name> <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class> <init-param> <param-name>encoding</param-name> <param-value>UTF-8</param-value> </init-param> <init-param> <param-name>forceEncoding</param-name> <param-value>true</param-value> </init-param> </filter> <filter-mapping> <filter-name>characterEncodingFilter</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> <listener> <listener-class>org.springframework.web.context.request.RequestContextListener</listener-class> </listener> <listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener> <servlet> <servlet-name>dispatcher</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <init-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:applicationContext.xml</param-value> </init-param> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>dispatcher</servlet-name> <url-pattern>*.do</url-pattern> </servlet-mapping> </web-app>
其中配置了ContextLoaderListener,但是我在老师的课程没有看到这个配置,我去查了一些资料,说在spring web中不需要配置这个,跟老师求证下,是这样吗?
正在回答 回答被采纳积分+1
同学你好,ContextLoaderListener监听器的主要作用是初始化web容器,初始化WebApplicationContext对象。
这里WebApplicationContext是对ApplicationContext的拓展,是专门应用于web环境的。但是通常情况下并不会直接使用WebApplicationContext而是只使用ApplicationContext。所以在课程中并没有专门进行配置来初始化WebApplicationContext。
同时,当配置文件web.xml中存在多个Servlet时,即不止是有DispatcherServlet,还有Shiro等Servlet时,是可能会出现互相的上下文Context可见性问题,所以为了避免这个问题,在同时存在多个Servlet时,建议加上这句监听器配置,以保证加载时不会出现问题。
课程中由于只有DispatcherServlet这一个Servlet,所以并不存在上面的情况,就没有专门对其进行配置。
综上所述,ContextLoaderListener监听器的配置是随着需求进行配置的,公司为了保证任何情况下都不会有问题,所以将其添加在配置文件中,是正确的。
祝学习愉快~
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星