有时候在开发程序的工程中,无法适应application server的log4j加载,必须手工完成这个过程.其代码大约如下:
URL configFileUrl = LdapUtils.class.getResource("log4j.properties");
PropertyConfigurator.configure(configFileUrl);
其中,
log4j.properties文件的放置路径为: bin/log4j.properties.如果该文件不是直接放在bin目录下,而是放在某个包中,这里假设是fred.study.configs,那么加载的代码就应该是:
URL configFileUrl = LdapUtils.class.getResource("/fred/study/configs/log4j.properties");
PropertyConfigurator.configure(configFileUrl);