关于今天发现的配置log4j相对路径的做法

    今天遇到了配置log4j相对路径的问题,在网上找到了一些资料,但是感觉比复杂(maybe本人菜鸟一枚)且并不适合现在做的项目,根据找到的资料想到配置方法如下:
1、项目启动时,加载一个初始类:
public class ConfigXmlInit extends HttpServlet {
public void init() throws ServletException {
try {
String configHome = "";
String logPath = "";

// 路径信息.
separatortemp = java.io.File.separator;
configHome = getServletContext().getRealPath("/");
System.out.println("11111"+configHome);
if (!configHome.endsWith(separatortemp)){
configHome += separatortemp;
}
logPath = configHome +"log"+separatortemp;
System.setProperty("log4j.path.sinoiaciv2512", logPath);
} catch (Exception e) {
e.printStackTrace();
throw new ServletException(e);
}
}
}
2、在web.xml中配置加载信息:
<servlet>
        <servlet-name>ConfigXmlInit</servlet-name>
        <servlet-class>package.ConfigXmlInit</servlet-class>
        <load-on-startup>1</load-on-startup>
</servlet>
3、log4j.properties中配置路径信息:
log4j.logger.test=DEBUG,console,debug
log4j.appender.debug=org.apache.log4j.DailyRollingFileAppender
log4j.appender.debug.file=${log4j.path.sinoiaciv2512}/log4j_debug.log

你可能感兴趣的:(java,log4j)