从这个答案https://stackoverflow.com/a/25125159/4367326我routingAppender
开始工作,但我想为程序中的每个线程设置ThreadContext
。
当我设置
ThreadContext.put("logFileName", "TestLogFile");
它适用于主线程和日志,但不适用于我的应用程序中的任何其他线程。我怎样才能做到这一点?
答案 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方法。