怎样添加java的log4j添加到java项目中
首先,弄到log4j的jar包,maven工程配置以下依赖就行,或者,从阿里的maven仓库下载jar包,添加到工程的“build path”log4j log4j 1.2.17
然后,整一个log4j.properties,内容如下,然后把它放在src/main/java目录(也就是包所在的根目录)
1、普通java工程或spring工程
这是最常见的java工程类型,写demo用的多,把log4j.properties放在src/main/java目录(也就是包所在的根目录)就行了
2、spring mvc工程
web工程里用spring mvc构建的比较多了,把log4j.properties放在src/main/resources的conf目录(web工
程配置文件通常在resources或WEB-INF目录),编辑web.xml,添加
log4jConfigLocation classpath:/conf/log4j.properties org.springframework.web.util.Log4jConfigListener
3、普通web工程
没有了spring提供的listener加载log4j.properties,我们要怎么加载这个文件呢?同样,把log4j.properties
放在src/main/resources的conf目录,我们整一个servlet来加载
publicclassLog4jServletextendsHttpServlet { privatestaticfinallongserialVersionUID = 1L; publicvoidinit(ServletConfig config)throwsServletException { String prefix =this.getClass().getClassLoader().getResource("/").getPath(); String path = config.getInitParameter("log4j-path"); PropertyConfigurator.configure(prefix + path); } publicvoiddoGet(HttpServletRequest req, HttpServletResponse res)throwsIOException, ServletException {} publicvoiddoPost(HttpServletRequest req, HttpServletResponse res)throwsIOException, ServletException {} publicvoiddestroy() {} }
然后配置servlet随着web工程启动而初始化,编辑web.xml,添加
log4j com.xmyself.log4j.Log4jServlet log4j-path conf/log4j.properties 1
看着是不是和spring mvc的很像,甚至你也想到了,普通java工程没有指定log4j.properties的路径,那说明
log4j的jar包一定有一个默认的路径。另外,建议,log4j的配置放在第一个,因为后续加载其他组件就要开始使用日