web.xml上监听器作用

Posted 北方乐逍遥

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了web.xml上监听器作用相关的知识,希望对你有一定的参考价值。

  1. <!--Spring ApplicationContext 载入 -->  
  2. <listener>  
  3.     <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>  
  4. </listener>  
  5.   
  6. <!-- 使Spring支持request与session的scope,如:<bean id="loginAction" class="com.foo.LoginAction" scope="request"/> -->  
  7. <listener>  
  8.   <listener-class>org.springframework.web.context.request.RequestContextListener</listener-class>  
  9. </listener>  
  10.   
  11. <!-- Spring 刷新Introspector防止内存泄露 -->  
  12. <listener>  
  13.     <listener-class>org.springframework.web.util.IntrospectorCleanupListener</listener-class>  
  14. </listener>  



<context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>
            /WEB-INF/config/application-context.xml
            /WEB-INF/config/cache-context.xml
            /WEB-INF/config/captcha-context.xml
            /WEB-INF/config/jeecore-context.xml
            /WEB-INF/config/jeecms-context.xml
        </param-value>
    </context-param>


 
  1. <listener>  
  2.         <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>  
  3.     </listener


一起用

以上是关于web.xml上监听器作用的主要内容,如果未能解决你的问题,请参考以下文章

ContextLoaderListener作用详解

spring项目中监听器作用-ContextLoaderListener(转)

ContextLoaderListener作用详解

(转载)web.xml中 IntrospectorCleanupListener的作用

spring项目中监听器作用-ContextLoaderListener(项目启动时,加载一些东西到缓存中)

web.xml