溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

詳解Log4j 日志文件存放位置設(shè)置

發(fā)布時(shí)間:2020-10-20 18:04:44 來源:腳本之家 閱讀:233 作者:擦肩而過 欄目:編程語言

以DailyRollingFileAppender 為例:假設(shè)每天一個(gè)日志文件

有以下設(shè)置:

log4j.appender.A1=org.apache.log4j.DailyRollingFileAppender

log4j.appender.A1.File=app.log

log4j.appender.A1.DatePattern='.'yyyy-MM-dd

log4j.appender.A1.layout=org.apache.log4j.PatternLayout

log4j.appender.A1.layout.ConversionPattern=%d %5p - %c -%-4r [%t]    - %m%n

經(jīng)過自己測試,無法找到app.log文件 

如要將日志文件保存在 :根目錄/web-info/logs/下,個(gè)人有以下4種解決方案:

1 絕對路徑

log4j.appender.A1.File=D:\apache-tomcat-6.0.18/webapps/項(xiàng)目/WEB-INF/logs/app.log

但這種寫法靈活性很差

以下3中使用相同的設(shè)置原理: jvm的環(huán)境變量

2:spring的Log4jConfigListener

通過以下配置

<context-param> 
  <param-name>webAppRootKey</param-name> 
  <param-value>webApp.root</param-value> 
 </context-param> 
 <context-param> 
 <param-name>log4jConfigLocation</param-name> 
  <param-value>classpath:log4j.properties</param-value> 
 </context-param> 
<listener>  
   <listener-class>org.springframework.web.util.Log4jConfigListener</listener-class>  
 </listener> 

log4j.appender.logfile.File=${webApp.root}/WEB-INF/logs/app.log

備注:

1、spring配置變了webAppRootKey是不能變的,值可以隨意寫。

2、log文件存放在tomcat工程目錄/webapp(工程名稱)/WEB-INF/logs/app.log文件。

2:使用已有jvm變量:

例如:

log4j.appender.logfile.File=${user.home}/logs/app.log

日志將位于:例如windows:C:\Documents and Settings\joe\logs\app.log

3 自己設(shè)置目錄,也就是在項(xiàng)目啟動(dòng)時(shí)通過System.setProperty設(shè)置,通過實(shí)現(xiàn)ServletContextListener來解決:例如

public class log4jlistener implements ServletContextListener { 
  public static final String log4jdirkey = "log4jdir"; 
  public void contextDestroyed(ServletContextEvent servletcontextevent) { 
    System.getProperties().remove(log4jdirkey); 
  } 
  public void contextInitialized(ServletContextEvent servletcontextevent) { 
  String log4jdir = servletcontextevent.getServletContext().getRealPath("/"); 
  //System.out.println("log4jdir:"+log4jdir); 
  System.setProperty(log4jdirkey, log4jdir); 
  } 
} 

web.xml配置:

<listener> 
  <listener-class>com.log4j.log4jlistener</listener-class> 
</listener> 

log4j.prtperties 配置:

log4j.appender.A1.File=${log4jdir}/WEB-INF/logs/app1.log 來解決。

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI