我有log4j2.xml
执行基本的Web服务日志记录。由于我想将webservice项目作为依赖项包含在另一个项目中,我希望继承日志记录配置。
<?xml version="1.0" encoding="UTF-8"?>
<Configuration>
<Appenders>
<RollingFile name="rolling">
...
</RollingFile>
</Appenders>
<Loggers>
<Root level="all">
<AppenderRef ref="rolling />
</Root>
</Loggers>
</Configuration>
因为到目前为止我没有找到继承此配置的方法。这不可能吗?