Logback is a viable solution to address this problem. After having look around different hacks to make this work with log4j, we have decided to switch to Logback. I have used the following configuration with Logback jar inside the webapp.
A Logback file inside the webapp which include an external file:
<?xml version="1.0" encoding="UTF-8" ?>
<configuration scan="true" scanPeriod="10 seconds">
<contextListener class="ch.qos.logback.classic.jul.LevelChangePropagator">
<resetJUL>true</resetJUL>
</contextListener>
<contextName>${project.artifactId}</contextName>
<jmxConfigurator />
<include file="${logback.configuration.filepath}" />
</configuration>
${logback.configuration.filepath} is replaced during Maven filtering by the exact path, external to the webapp of the configuration file (something like /opt/server/conf/loback.included.conf).
And then, the content of the logback.included.conf (this file is part of the projetct, delivered with build-helper:attach-artifact, so ${project.artifactId} is also replaced during Maven filtering):
<?xml version="1.0" encoding="UTF-8" ?>
<included>
<appender name="file" class="ch.qos.logback.core.FileAppender">
<file>/var/log/server/${project.artifactId}.log</file>
<encoder>
<pattern>[@/%contextName] %date{ISO8601} [%-5level] %thread:[%logger] %msg%n</pattern>
</encoder>
</appender>
<root level="INFO">
<appender-ref ref="file" />
</root>
</included>
Only limitation, the content of the included file must be compliant with the one of the includer. Just writing rules in fact.