博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
tomcat配置使用log4j管理日志
阅读量:6154 次
发布时间:2019-06-21

本文共 1387 字,大约阅读时间需要 4 分钟。

  • 从tomcat官网下载和tomcat对应的tomcat-juli.jar和tomcat-juli-adapters.jar,从log4j官网下载log4j的jar包(我用的是log4j-1.2.17.jar),书写log4j.properties日志配置文件。

  

  log4j.properties内容:

# filelog4j.appender.file=org.apache.log4j.RollingFileAppenderlog4j.appender.file.maxFileSize=2MBlog4j.appender.file.maxBackupIndex=50log4j.appender.file.File=./log/log.loglog4j.appender.file.threshold=debuglog4j.appender.file.layout=org.apache.log4j.PatternLayoutlog4j.appender.file.layout.ConversionPattern=%-d{yyyy-MM-dd HH:mm:ss} %-5p [%t] %l - %m%n# stdoutlog4j.appender.stdout=org.apache.log4j.ConsoleAppenderlog4j.appender.stdout.Target=System.outlog4j.appender.stdout.layout=org.apache.log4j.PatternLayoutlog4j.appender.stdout.layout.ConversionPattern=%-d{yyyy-MM-dd HH:mm:ss} %-5p [%t] %l - %m%n# htmllog4j.appender.html=org.apache.log4j.FileAppenderlog4j.appender.html.File=./log/log.htmllog4j.appender.html.MaxBackupIndex=3 log4j.appender.html.layout=org.apache.log4j.HTMLLayoutlog4j.appender.html.layout.Title=HTML Layout Examplelog4j.appender.html.layout.LocationInfo=true# rootLoggerlog4j.rootLogger=info, stdout, file# log levellog4j.logger.net.phoenix.learn.log4jsample=debug

  log4j.properties配置可参考该博文

  • 将tomcat-juli.jar放置在tomcat/bin目录中,替换原来的。
  • 将tomcat-juli-adapters.jar、log4j-1.2.17.jar、log4j.properties放置在tomcat/lib目录下。
  • 删除tomcat/conf目录下的logging.properties文件。

转载于:https://www.cnblogs.com/phoenix-smile/p/5923592.html

你可能感兴趣的文章
Python学习--time
查看>>
在OSCHINA上的第一篇博文,以后好好学习吧
查看>>
Spring常用注解
查看>>
linux:yum和apt-get的区别
查看>>
Sentinel 1.5.0 正式发布,引入 Reactive 支持
查看>>
数据库之MySQL
查看>>
2019/1/15 批量删除数据库相关数据
查看>>
数据类型的一些方法
查看>>
Webpack 2 中一些常见的优化措施
查看>>
移动端响应式
查看>>
js中var、let、const的区别
查看>>
简洁优雅地实现夜间模式
查看>>
react学习总结
查看>>
在soapui上踩过的坑
查看>>
MySQL的字符集和字符编码笔记
查看>>
ntpd同步时间
查看>>
must implement java.io.Serializable hessian
查看>>
Microsoft Licenses Flash Lite for Windows Mobile Users
查看>>
HDOJ 2020 绝对值排序
查看>>
HDOJ/HDU 2560 Buildings(嗯~水题)
查看>>