如何在运行中改变log4j的日志目录

如何在运行中改变log4j的日志目录,第1张

以DailyRollingFileAppender 为例:假设每天一个日志文件

有以下设置:

log4jappenderA1=orgapachelog4jDailyRollingFileAppender

log4jappenderA1File=applog

log4jappenderA1DatePattern=''yyyy-MM-dd

log4jappenderA1layout=orgapachelog4jPatternLayout

log4jappenderA1layoutConversionPattern=%d %5p - %c -%-4r [%t] - %m%n

此时生成日志文件将位于tomcat的bin目录下,如要将日志文件保存在 :根目录/web-info/logs/下,个人有以下4种解决方案:

1 绝对路径

log4jappenderA1File=D:\apache-tomcat-6018/webapps/项目/WEB-INF/logs/applog

但这种写法灵活性很差

以下3中使用相同的设置原理: jvm的环境变量

2:spring的Log4jConfigListener

通过以下配置:

< context-param>

<param-name>webAppRootKey</param-name>

<param-value>webApproot</param-value>

</context-param>

<context-param>

<param-name>log4jConfigLocation</param-name>

<param-value>classpath:log4jproperties</param-value>

</context-param>

< listener>

<listener-class>orgspringframeworkwebutilLog4jConfigListener</listener-class>

</listener>

log4jappenderlogfileFile=${webApproot}/WEB-INF/logs/applog

来解决

2:使用已有jvm变量:

例如:

log4jappenderlogfileFile=${userhome}/logs/applog

日志将位于:例如windows:C:\Documents and Settings\joe\logs\applog

3 自己设置目录,也就是在项目启动时通过SystemsetProperty设置

通过实现ServletContextListener来解决:例如

public class log4jlistener implements ServletContextListener {

public static final String log4jdirkey = "log4jdir";

public void contextDestroyed(ServletContextEvent servletcontextevent) {

SystemgetProperties()remove(log4jdirkey);

}

public void contextInitialized(ServletContextEvent servletcontextevent) {

String log4jdir = servletcontexteventgetServletContext()getRealPath("/");

//Systemoutprintln("log4jdir:"+log4jdir);

SystemsetProperty(log4jdirkey, log4jdir);

}

}

webxml配置:

<listener>

<listener-class>comlog4jlog4jlistener</listener-class>

</listener>

log4jprtperties 配置:

log4jappenderA1File=${log4jdir}/WEB-INF/logs/app1log

来解决。

DABAN RP主题是一个优秀的主题,极致后台体验,无插件,集成会员系统
网站模板库 » 如何在运行中改变log4j的日志目录

0条评论

发表评论

提供最优质的资源集合

立即查看 了解详情