URL propXML = this.getClass().getResource(RESFILE);
Configuration config = new XMLConfiguration(propXML);
or
ClassLoader loader = Thread.currentThread().getContextClassLoader();
DOMConfigurator.configure(loader.getResource("log4j.xml"));
The Answer to Life, the Universe, and Everything
URL propXML = this.getClass().getResource(RESFILE);
Configuration config = new XMLConfiguration(propXML);
ClassLoader loader = Thread.currentThread().getContextClassLoader();
DOMConfigurator.configure(loader.getResource("log4j.xml"));
No comments:
Post a Comment