java.util.logging在每个日志条目中包含jSessionId

时间:2013-02-27 23:49:28

标签: java java-ee java.util.logging

我在我的应用程序中使用j2se logger。 有没有办法记录日志文件中每个日志条目的jSessionId而不修改当前日志语句。

1 个答案:

答案 0 :(得分:0)

我得到了解决方案。这可以通过ThreadLocal,servlet过滤器和日志过滤器完成。步骤如下:

使用ThreadLocal变量创建会话ID持有者类:

public abstract class SessionUtil {
      private static final ThreadLocal<String> sessionIdThreadLocal = new ThreadLocal<String>();
      public static String getSessionId() {
            return sessionIdThreadLocal.get();
      }
      public static void setSessionId(String jSessionId) {
            sessionIdThreadLocal.set(jSessionId);
      }
      public static void removeSessionId() {
            sessionIdThreadLocal.remove();
      }
}

创建一个ServletFilter并在ServletFilter类的init()方法中,附加日志过滤器和日志处理程序:

Handler[] handlers = Logger.getLogger("").getHandlers();
for (Handler handler : handlers) {
LogFilter logFilter = new MyLogFilter();
handler.setFilter(logFilter);
}

在ServletFilter类的doFilter()方法中,添加以下行以将JSessionId添加到ThreadLocal:

SessionUtil.setSessionId(request.getSession(false).getId());

在ServletFilter类的doFilter()方法的finally块中,添加以下行以在处理请求后从ThreadLocal中删除JSessionId:

SessionUtil.removeSessionId();

定义日志过滤器类:

public class MyLogFilter implements LogFilter {
    public boolean isLoggable(LogRecord record) {
    if (SessionUtil.getSessionId() != null && 
            !SessionUtil.getSessionId().toString().equals("")) {
        StringBuilder sessId = new StringBuilder(SessionUtil.getSessionId().toString());
        String methodName = record.getSourceMethodName();
            if (methodName != null && !methodName.equals("")) {
            if (!methodName.endsWith(sessId.toString())) {
                    record.setSourceMethodName(sessId.insert(0, " ").insert(0, methodName).toString());
            }
            } else {
            record.setSourceMethodName(sessId.toString());
            }
    }
        return true;
    }
}

现在,示例日志条目将如下:

[4/12/13 10:00:46:685 EDT] 00000020 SampleClass    I com.example.SampleClass sampleMethod() [ROatVgqdnLd-ls3_ONvXcXU] Sample message