log4j.properties不打到war包中,单独写到一个存放配置文件的文件夹中,在容器中将该文件夹放入classpath,在web.xml中可以如下配置:

  <context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>classpath:applicationContext-dao.xml,classpath:SpringMVC.xml
    </param-value>
  </context-param>


  <context-param>
    <param-name>log4jConfigLocation</param-name>
    <param-value>classpath:db2client-cfg/log4j.properties</param-value>
  </context-param>

  <context-param>
    <param-name>log4jRefreshInterval</param-name>
    <param-value>60000</param-value>
  </context-param>

  <!-- 配置log4j.xml监听器-->
  <!--需要配置在 ContextLoaderListener之前-->
  <listener>
    <listener-class>org.springframework.web.util.Log4jConfigListener</listener-class>
  </listener>

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

 

相关文章:

  • 2022-12-23
  • 2021-06-16
  • 2022-12-23
  • 2021-07-31
  • 2022-12-23
  • 2021-06-28
  • 2022-02-11
猜你喜欢
  • 2022-12-23
  • 2021-09-24
  • 2021-08-10
  • 2021-06-17
  • 2021-06-30
  • 2021-12-15
  • 2021-09-06
相关资源
相似解决方案