当前位置: 代码迷 >> 综合 >> spring项目中监听器作用-ContextLoaderListener
  详细解决方案

spring项目中监听器作用-ContextLoaderListener

热度:88   发布时间:2023-12-21 22:42:22.0

【推荐】2019 Java 开发者跳槽指南.pdf(吐血整理) >>> hot3.png

作用:在启动Web 容器时,自动装配Spring applicationContext.xml 的配置信息。

 

因为它实现了ServletContextListener 这个接口,在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>

  相关解决方案