为应用程序中的所有线程设置ThreadContext

时间:2016-11-04 13:16:11

标签: java multithreading log4j log4j2

从这个答案https://stackoverflow.com/a/25125159/4367326routingAppender开始工作,但我想为程序中的每个线程设置ThreadContext

当我设置

ThreadContext.put("logFileName", "TestLogFile");

它适用于主线程和日志,但不适用于我的应用程序中的任何其他线程。我怎样才能做到这一点?

1 个答案:

答案 0 :(得分:4)

如果将系统属性 isThreadContextMapInheritable 设置为true,则每个子线程都将继承父类ThreadContext状态。但这对Executors不起作用,因此您需要手动将数据从一个线程复制到另一个线程。

<强>更新#2

您可以这样做:

public abstract class ThreadContextRunnable implements Runnable {

  private final Map context = ThreadContext.getContext();

  @Override
  public final void run() {
    if (context != null) {
      ThreadContext.putAll(context);
    }
    try {
      runWithContext();
    } finally {
      ThreadContext.clearAll();
    }
  }

  protected abstract void runWithContext();
}

然后你只需要实现runWithContext方法。