前言
-
spring默认加载的是classpath根目录下面的log4j.properties,如果要放在其他目录,则需要按如下配置
-
在web.xml中配置
配置
<!-- 指定log4j配置文件log4j.properties的位置(如果是在classpath根路径下,可以不配置) -->
<context-param>
<param-name>log4jConfigLocation</param-name>
<param-value>classpath:config/log4j.properties</param-value>
</context-param>
<!-- 配置spring中对于log4j的listener,注意该Listener要在spring的listener之前 -->
<listener>
<listener-class>org.springframework.web.util.Log4jConfigListener</listener-class>
</listener>
注:如果使用maven构建,jar包也属于根目录,是不能修改的根目录