在web环境中加载log4j的配置文件时在web.xml中写配置即可,在非web环境中加载log4j.PRoperties需要在main方法中添加
PropertyConfigurator.configure("log4j.properties")
但是在运行过程中出现filenotfondexception,按网上说的把配置文件放在src目录下还是不能加载成功
此时总结了几种解决办法
1). 用绝对路径,不推荐;
PropertyConfigurator.configure("D/workspace/test/src/log4j.properties")
2). 使用相对路径:
a). 将log4j文件置于src/目录下,配置中,PropertyConfigurator.configure("src/log4j.properties");
b). 将log4j文件置于项目的根下,配置中,PropertyConfigurator.configure("log4j.properties");
新闻热点
疑难解答