如何找到log4j.xml的位置?
我需要在下面的代码
中插入我的log4j.xml的位置URL u = getClass().getClassLoader().getResource("");
DOMConfigurator.configure(u);
答案 0 :(得分:1)
默认情况下,Log4j在类路径中查找名为log4j2.xml(而不是log4j.xml)的配置文件。
您还可以使用以下系统属性指定配置文件的完整路径:
-Dlog4j.configurationFile=path/to/log4j2.xml
有关详情,请点击Log4j