当log4j.xml 或log4j.properties在classpath log4j会自动查找。如果不在classpath路径下我们需要直接加载配置文件
DOMConfigurator.configure(log4jPath);
PropertyConfigurator.configure(log4jPath);
第一个是加载log4j.xml
第二个是加载log4j.properties
当log4j.xml 或log4j.properties在classpath log4j会自动查找。如果不在classpath路径下我们需要直接加载配置文件
DOMConfigurator.configure(log4jPath);
PropertyConfigurator.configure(log4jPath);
第二个是加载log4j.properties