Thread和Runnable之间的ThreadLocal变量为null

时间:2017-09-23 03:54:23

标签: java multithreading thread-safety thread-local

我对应用程序的每个传入请求使用线程。首先,我在 SLF4J 中通过 MDC 类在Thread的构造函数中设置了一个标志,并在Runnable的run方法中获取它,但值为空值。我猜这个问题与 MDC 类有关,所以我打算使用原来 ThreadLocal 的可能性而不是 SLF4J 但是我错了,代码有还没有正常工作。 我的代码是:

public class CustomThread extends Thread
{
     public static      ThreadLocal<String> status = new ThreadLocal<String>();

    public  CustomThread(CustomRunnable target)
    {
         super(target);
         status.set("Start");
    }
}

public class CustomRunnable implements Runnable
{
      public void run()
      {
               System.out.println(CustomThread.status.get());
       }
}

public static void main(String[] args) throws InterruptedException
{
      CustomThread t1 = new CustomThread(new CustomRunnable());
      t1.start();
}

结果是:

The flag is : null

还有什么我必须做的吗?

1 个答案:

答案 0 :(得分:0)

只能在设置它的线程中看到ThreadLocal的值。在您的代码中,您在主线程中设置ThreadLocal并在另一个步骤中读取它 - CustomThread。