Have you tried using the 'classpath:' notation in the location parameter of
Code:
Log4jConfigurer.initLogging()
If the location is relative to your project, classpath: will start at the project root (e.g. if your log4j.props file is at /WEB-INF/log4j.properties, it should work to specify the path as classpath:/WEB-INF/log4j.properties).
This can be configured in web.xml:
Code:
<context-param>
<param-name>log4jConfigLocation</param-name>
<param-value>classpath:/WEB-INF/log4j.properties</param-value>
</context-param>
...
<listener>
<listener-class>org.springframework.web.util.Log4jConfigListener</listener-class>
</listener>