彻底理解ThreadLocal

先总述,后分析

  深挖过threadLocal之后,一句话概括:Synchronized用于线程间的数据共享,而ThreadLocal则用于线程间的数据隔离。所以ThreadLocal的应用场合,最适合的是按线程多实例(每个线程对应一个实例)的对象的访问,并且这个对象很多地方都要用到。

  数据隔离的秘诀其实是这样的,Thread有个TheadLocalMap类型的属性,叫做threadLocals,该属性用来保存该线程本地变量。这样每个线程都有自己的数据,就做到了不同线程间数据的隔离,保证了数据安全。

  接下来采用jdk1.8源码进行深挖一下TheadLocal和TheadLocalMap。

ThreadLocal是什么

  早在JDK 1.2的版本中就提供java.lang.ThreadLocal,ThreadLocal为解决多线程程序的并发问题提供了一种新的思路。使用这个工具类可以很简洁地编写出优美的多线程程序。

  当使用ThreadLocal维护变量时,ThreadLocal为每个使用该变量的线程提供独立的变量副本,所以每一个线程都可以独立地改变自己的副本,而不会影响其它线程所对应的副本。

  从线程的角度看,目标变量就象是线程的本地变量,这也是类名中“Local”所要表达的意思。

  所以,在Java中编写线程局部变量的代码相对来说要笨拙一些,因此造成线程局部变量没有在Java开发者中得到很好的普及。

原理

  ThreadLocal,连接ThreadLocalMap和Thread。来处理Thread的TheadLocalMap属性,包括init初始化属性赋值、get对应的变量,set设置变量等。通过当前线程,获取线程上的ThreadLocalMap属性,对数据进行get、set等操作。

  ThreadLocalMap,用来存储数据,采用类似hashmap机制,存储了以threadLocal为key,需要隔离的数据为value的Entry键值对数组结构。

  ThreadLocal,有个ThreadLocalMap类型的属性,存储的数据就放在这儿。

ThreadLocal、ThreadLocal、Thread之间的关系

  ThreadLocalMap是ThreadLocal内部类,由ThreadLocal创建,Thread有ThreadLocal.ThreadLocalMap类型的属性。源码如下:

Thread的属性:

[java]  view plain  copy
  1. public  
  2. class Thread implements Runnable {  
  3.     /*...其他属性...*/  
  4.   
  5.     /* ThreadLocal values pertaining to this thread. This map is maintained 
  6.      * by the ThreadLocal class. */  
  7.     ThreadLocal.ThreadLocalMap threadLocals = null;  
  8.   
  9.     /* 
  10.      * InheritableThreadLocal values pertaining to this thread. This map is 
  11.      * maintained by the InheritableThreadLocal class. 
  12.      */  
  13.     ThreadLocal.ThreadLocalMap inheritableThreadLocals = null;  

ThreadLocal和ThreadLocalMap

[java]  view plain  copy
  1. public class ThreadLocal<T> {  
  2.     /**..其他属性和方法稍后介绍...*/  
  3.     /** 
  4.      * ThreadLocalMap is a customized hash map suitable only for 
  5.      * maintaining thread local values. No operations are exported 
  6.      * outside of the ThreadLocal class. The class is package private to 
  7.      * allow declaration of fields in class Thread.  To help deal with 
  8.      * very large and long-lived usages, the hash table entries use 
  9.      * WeakReferences for keys. However, since reference queues are not 
  10.      * used, stale entries are guaranteed to be removed only when 
  11.      * the table starts running out of space. 
  12.      */  
  13.     static class ThreadLocalMap {  

由ThreadLocal对Thread的TreadLocalMap进行赋值

[java]  view plain  copy
  1. /** 
  2.  * Create the map associated with a ThreadLocal. Overridden in 
  3.  * InheritableThreadLocal. 
  4.  * 
  5.  * @param t the current thread 
  6.  * @param firstValue value for the initial entry of the map 
  7.  */  
  8. void createMap(Thread t, T firstValue) {  
  9.     t.threadLocals = new ThreadLocalMap(this, firstValue);  
  10. }  
ThreadLocal的接口方法

ThreadLocal类核心方法set、get、initialValue、withInitial、setInitialValue、remove:

[java]  view plain  copy
  1. /** 
  2.   * Returns the current thread's "initial value" for this 
  3.   * thread-local variable.  This method will be invoked the first 
  4.   * time a thread accesses the variable with the {@link #get} 
  5.   * method, unless the thread previously invoked the {@link #set} 
  6.   * method, in which case the {@code initialValue} method will not 
  7.   * be invoked for the thread.  Normally, this method is invoked at 
  8.   * most once per thread, but it may be invoked again in case of 
  9.   * subsequent invocations of {@link #remove} followed by {@link #get}. 
  10.   * 
  11.   * <p>This implementation simply returns {@code null}; if the 
  12.   * programmer desires thread-local variables to have an initial 
  13.   * value other than {@code null}, {@code ThreadLocal} must be 
  14.   * subclassed, and this method overridden.  Typically, an 
  15.   * anonymous inner class will be used. 
  16.   * 
  17.   * @return the initial value for this thread-local 
  18.   */  
  19.  protected T initialValue() {  
  20.      return null;  
  21.  }  
  22.   
  23.  /** 
  24.   * Creates a thread local variable. The initial value of the variable is 
  25.   * determined by invoking the {@code get} method on the {@code Supplier}. 
  26.   * 
  27.   * @param <S> the type of the thread local's value 
  28.   * @param supplier the supplier to be used to determine the initial value 
  29.   * @return a new thread local variable 
  30.   * @throws NullPointerException if the specified supplier is null 
  31.   * @since 1.8 
  32.   */  
  33.  public static <S> ThreadLocal<S> withInitial(Supplier<? extends S> supplier) {  
  34.      return new SuppliedThreadLocal<>(supplier);  
  35.  }  
  36.   
  37.  /** 
  38.   * Creates a thread local variable. 
  39.   * @see #withInitial(java.util.function.Supplier) 
  40.   */  
  41.  public ThreadLocal() {  
  42.  }  
  43.   
  44.  /** 
  45.   * Returns the value in the current thread's copy of this 
  46.   * thread-local variable.  If the variable has no value for the 
  47.   * current thread, it is first initialized to the value returned 
  48.   * by an invocation of the {@link #initialValue} method. 
  49.   * 
  50.   * @return the current thread's value of this thread-local 
  51.   */  
  52.  public T get() {  
  53.      Thread t = Thread.currentThread();  
  54.      ThreadLocalMap map = getMap(t);  
  55.      if (map != null) {  
  56.          ThreadLocalMap.Entry e = map.getEntry(this);  
  57.          if (e != null) {  
  58.              @SuppressWarnings("unchecked")  
  59.              T result = (T)e.value;  
  60.              return result;  
  61.          }  
  62.      }  
  63.      return setInitialValue();  
  64.  }  
  65.   
  66.  /** 
  67.   * Variant of set() to establish initialValue. Used instead 
  68.   * of set() in case user has overridden the set() method. 
  69.   * 
  70.   * @return the initial value 
  71.   */  
  72.  private T setInitialValue() {  
  73.      T value = initialValue();  
  74.      Thread t = Thread.currentThread();  
  75.      ThreadLocalMap map = getMap(t);  
  76.      if (map != null)  
  77.          map.set(this, value);  
  78.      else  
  79.          createMap(t, value);  
  80.      return value;  
  81.  }  
  82.   
  83.  /** 
  84.   * Sets the current thread's copy of this thread-local variable 
  85.   * to the specified value.  Most subclasses will have no need to 
  86.   * override this method, relying solely on the {@link #initialValue} 
  87.   * method to set the values of thread-locals. 
  88.   * 
  89.   * @param value the value to be stored in the current thread's copy of 
  90.   *        this thread-local. 
  91.   */  
  92.  public void set(T value) {  
  93.      Thread t = Thread.currentThread();  
  94.      ThreadLocalMap map = getMap(t);  
  95.      if (map != null)  
  96.          map.set(this, value);  
  97.      else  
  98.          createMap(t, value);  
  99.  }  
  100.   
  101.  /** 
  102.   * Removes the current thread's value for this thread-local 
  103.   * variable.  If this thread-local variable is subsequently 
  104.   * {@linkplain #get read} by the current thread, its value will be 
  105.   * reinitialized by invoking its {@link #initialValue} method, 
  106.   * unless its value is {@linkplain #set set} by the current thread 
  107.   * in the interim.  This may result in multiple invocations of the 
  108.   * {@code initialValue} method in the current thread. 
  109.   * 
  110.   * @since 1.5 
  111.   */  
  112.   public void remove() {  
  113.       ThreadLocalMap m = getMap(Thread.currentThread());  
  114.       if (m != null)  
  115.           m.remove(this);  
  116.   }  
  • initialValue返回该线程局部变量的初始值。该方法是一个protected的方法,显然是为了让子类覆盖而设计的。这个方法是一个延迟调用方法,在线程第1次调用get()或set(Object)时才执行,并且仅执行1次。ThreadLocal中的缺省实现直接返回一个null。
  • withInitial提供一个Supplier的lamda表达式用来当做初始值,java8引入。
  • setInitialValue设置初始值。在get操作没有对应的值时,调用此方法。private方法,防止被覆盖。过程和set类似,只不过是用initialValue作为value进行设置。
  • set设置当前线程对应的线程局部变量的值。先取出当前线程对应的threadLocalMap,如果不存在则用创建一个,否则将value放入以this,即threadLocal为key的映射的map中,其实threadLocalMap内部和hashMap机制一样,存储了Entry键值对数组,后续会深挖threadLocalMap。
  • get该方法返回当前线程所对应的线程局部变量。和set类似,也是先取出当前线程对应的threadLocalMap,如果不存在则用创建一个,但是是用inittialValue作为value放入到map中,且返回initialValue,否则就直接从map取出this即threadLocal对应的value返回。
  • remove将当前线程局部变量的值删除,目的是为了减少内存的占用,该方法是JDK 5.0新增的方法。需要指出的是,当线程结束后,对应该线程的局部变量将自动被垃圾回收,所以显式调用该方法清除线程的局部变量并不是必须的操作,但它可以加快内存回收的速度。需要注意的是如果remove之后又调用了get,会重新初始化一次,即再次调用initialValue方法,除非在get之前调用set设置过值。
ThreadLocalMap简介

  看名字就知道是个map,没错,这就是个hashMap机制实现的map,用Entry数组来存储键值对,key是ThreadLocal对象,value则是具体的值。值得一提的是,为了方便GC,Entry继承了WeakReference,也就是弱引用。里面有一些具体关于如何清理过期的数据、扩容等机制,思路基本和hashmap差不多,有兴趣的可以自行阅读了解,这边只需知道大概的数据存储结构即可。

[java]  view plain  copy
  1. /** 
  2.  * ThreadLocalMap is a customized hash map suitable only for 
  3.  * maintaining thread local values. No operations are exported 
  4.  * outside of the ThreadLocal class. The class is package private to 
  5.  * allow declaration of fields in class Thread.  To help deal with 
  6.  * very large and long-lived usages, the hash table entries use 
  7.  * WeakReferences for keys. However, since reference queues are not 
  8.  * used, stale entries are guaranteed to be removed only when 
  9.  * the table starts running out of space. 
  10.  */  
  11. static class ThreadLocalMap {  
  12.   
  13.     /** 
  14.      * The entries in this hash map extend WeakReference, using 
  15.      * its main ref field as the key (which is always a 
  16.      * ThreadLocal object).  Note that null keys (i.e. entry.get() 
  17.      * == null) mean that the key is no longer referenced, so the 
  18.      * entry can be expunged from table.  Such entries are referred to 
  19.      * as "stale entries" in the code that follows. 
  20.      */  
  21.     static class Entry extends WeakReference<ThreadLocal<?>> {  
  22.         /** The value associated with this ThreadLocal. */  
  23.         Object value;  
  24.   
  25.         Entry(ThreadLocal<?> k, Object v) {  
  26.             super(k);  
  27.             value = v;  
  28.         }  
  29.     }  

Thread同步机制的比较

  ThreadLocal和线程同步机制相比有什么优势呢?

  Synchronized用于线程间的数据共享,而ThreadLocal则用于线程间的数据隔离。

  在同步机制中,通过对象的锁机制保证同一时间只有一个线程访问变量。这时该变量是多个线程共享的,使用同步机制要求程序慎密地分析什么时候对变量进行读写,什么时候需要锁定某个对象,什么时候释放对象锁等繁杂的问题,程序设计和编写难度相对较大。

  而ThreadLocal则从另一个角度来解决多线程的并发访问。ThreadLocal会为每一个线程提供一个独立的变量副本,从而隔离了多个线程对数据的访问冲突。因为每一个线程都拥有自己的变量副本,从而也就没有必要对该变量进行同步了。ThreadLocal提供了线程安全的共享对象,在编写多线程代码时,可以把不安全的变量封装进ThreadLocal。

  概括起来说,对于多线程资源共享的问题,同步机制采用了“以时间换空间”的方式,而ThreadLocal采用了“以空间换时间”的方式。前者仅提供一份变量,让不同的线程排队访问,而后者为每一个线程都提供了一份变量,因此可以同时访问而互不影响。

  Spring使用ThreadLocal解决线程安全问题我们知道在一般情况下,只有无状态的Bean才可以在多线程环境下共享,在Spring中,绝大部分Bean都可以声明为singleton作用域。就是因为Spring对一些Bean(如RequestContextHolder、TransactionSynchronizationManager、LocaleContextHolder等)中非线程安全状态采用ThreadLocal进行处理,让它们也成为线程安全的状态,因为有状态的Bean就可以在多线程中共享了。

  一般的Web应用划分为展现层、服务层和持久层三个层次,在不同的层中编写对应的逻辑,下层通过接口向上层开放功能调用。在一般情况下,从接收请求到返回响应所经过的所有程序调用都同属于一个线程。


  同一线程贯通三层这样你就可以根据需要,将一些非线程安全的变量以ThreadLocal存放,在同一次请求响应的调用线程中,所有关联的对象引用到的都是同一个变量。

  下面的实例能够体现Spring对有状态Bean的改造思路:

代码清单3 TestDao:非线程安全

[java]  view plain  copy
  1. package com.test;  
  2.   
  3. import java.sql.Connection;  
  4. import java.sql.SQLException;  
  5. import java.sql.Statement;  
  6.   
  7. public class TestDao {  
  8.     private Connection conn;// ①一个非线程安全的变量  
  9.   
  10.     public void addTopic() throws SQLException {  
  11.         Statement stat = conn.createStatement();// ②引用非线程安全变量  
  12.         // …  
  13.     }  
  14. }  


由于①处的conn是成员变量,因为addTopic()方法是非线程安全的,必须在使用时创建一个新TopicDao实例(非singleton)。下面使用ThreadLocal对conn这个非线程安全的“状态”进行改造:

代码清单4 TestDao:线程安全

[java]  view plain  copy
  1. package com.test;  
  2.   
  3. import java.sql.Connection;  
  4. import java.sql.SQLException;  
  5. import java.sql.Statement;  
  6.   
  7. public class TestDaoNew {// ①使用ThreadLocal保存Connection变量  
  8.   private static ThreadLocal<Connection> connThreadLocal = ThreadLocal.withInitial(Test::createConnection);  
  9.   
  10.   // 具体创建数据库连接的方法  
  11.   private static Connection createConnection() {  
  12.     Connection result = null;  
  13.     /** 
  14.      * create a real connection... 
  15.      * such as : 
  16.      * result = DriverManager.getConnection(dbUrl, dbUser, dbPwd); 
  17.      */  
  18.     return result;  
  19.   }  
  20.   
  21.   // ③直接返回线程本地变量  
  22.   public static Connection getConnection() {  
  23.     return connThreadLocal.get();  
  24.   }  
  25.   
  26.   // 具体操作  
  27.   public void addTopic() throws SQLException {  
  28.     // ④从ThreadLocal中获取线程对应的Connection  
  29.     Statement stat = getConnection().createStatement();  
  30.     //....any other operation  
  31.   }  
  32. }  

  不同的线程在使用TopicDao时,根据之前的深挖get具体操作,判断connThreadLocal.get()会去判断是有map,没有则根据initivalValue创建一个Connection对象并添加到本地线程变量中,initivalValue对应的值也就是上述的lamba表达式对应的创建connection的方法返回的结果,下次get则由于已经有了,则会直接获取已经创建好的Connection,这样,就保证了不同的线程使用线程相关的Connection,而不会使用其它线程的Connection。因此,这个TopicDao就可以做到singleton共享了。

  当然,这个例子本身很粗糙,将Connection的ThreadLocal直接放在DAO只能做到本DAO的多个方法共享Connection时不发生线程安全问题,但无法和其它DAO共用同一个Connection,要做到同一事务多DAO共享同一Connection,必须在一个共同的外部类使用ThreadLocal保存Connection。



ConnectionManager.java

[java]  view plain  copy
  1. package com.test;  
  2.   
  3. import java.sql.Connection;  
  4. import java.sql.DriverManager;  
  5. import java.sql.SQLException;  
  6.   
  7. public class ConnectionManager {  
  8.   
  9.     private static ThreadLocal<Connection> connectionHolder = ThreadLocal.withInitial(() -> {  
  10.         Connection conn = null;  
  11.         try {  
  12.             conn = DriverManager.getConnection(  
  13.                     "jdbc:mysql://localhost:3306/test""username",  
  14.                     "password");  
  15.         } catch (SQLException e) {  
  16.             e.printStackTrace();  
  17.         }  
  18.         return conn;  
  19.     });  
  20.   
  21.     public static Connection getConnection() {  
  22.         return connectionHolder.get();  
  23.     }  
  24. }  

线程隔离的秘密

秘密就就在于上述叙述的ThreadLocalMap这个类。ThreadLocalMap是ThreadLocal类的一个静态内部类,它实现了键值对的设置和获取(对比Map对象来理解),每个线程中都有一个独立的ThreadLocalMap副本,它所存储的值,只能被当前线程读取和修改。ThreadLocal类通过操作每一个线程特有的ThreadLocalMap副本,从而实现了变量访问在不同线程中的隔离。因为每个线程的变量都是自己特有的,完全不会有并发错误。还有一点就是,ThreadLocalMap存储的键值对中的键是this对象指向的ThreadLocal对象,而值就是你所设置的对象了。


为了加深理解,我们接着看上面代码中出现的getMap和createMap方法的实现:

[java]  view plain  copy
  1. /** 
  2.  * Get the map associated with a ThreadLocal. Overridden in 
  3.  * InheritableThreadLocal. 
  4.  * 
  5.  * @param  t the current thread 
  6.  * @return the map 
  7.  */  
  8. ThreadLocalMap getMap(Thread t) {  
  9.     return t.threadLocals;  
  10. }  
  11.   
  12. /** 
  13.  * Create the map associated with a ThreadLocal. Overridden in 
  14.  * InheritableThreadLocal. 
  15.  * 
  16.  * @param t the current thread 
  17.  * @param firstValue value for the initial entry of the map 
  18.  * @param map the map to store. 
  19.  */  
  20. void createMap(Thread t, T firstValue) {  
  21.     t.threadLocals = new ThreadLocalMap(this, firstValue);  
  22. }  


小结

  ThreadLocal是解决线程安全问题一个很好的思路,它通过为每个线程提供一个独立的变量副本解决了变量并发访问的冲突问题。在很多情况下,ThreadLocal比直接使用synchronized同步机制解决线程安全问题更简单,更方便,且结果程序拥有更高的并发性。


后记

  看到网友评论的很激烈,甚至关于ThreadLocalMap不是ThreadLocal里面的,而是Thread里面的这种评论都出现了,于是有了这个后记,下面先把jdk源码贴上,源码最有说服力了。

[java]  view plain  copy
  1. /** 
  2.      * ThreadLocalMap is a customized hash map suitable only for 
  3.      * maintaining thread local values. No operations are exported 
  4.      * outside of the ThreadLocal class. The class is package private to 
  5.      * allow declaration of fields in class Thread.  To help deal with 
  6.      * very large and long-lived usages, the hash table entries use 
  7.      * WeakReferences for keys. However, since reference queues are not 
  8.      * used, stale entries are guaranteed to be removed only when 
  9.      * the table starts running out of space. 
  10.      */  
  11.     static class ThreadLocalMap {...}  

  源码就是以上,这源码自然是在ThreadLocal里面的,有截图为证。


  本文是自己在学习ThreadLocal的时候,一时兴起,深入看了源码,思考了此类的作用、使用范围,进而联想到对传统的synchronize共享变量线程安全的问题进行比较,而总结的博文,总结一句话就是一个是锁机制进行时间换空间,一个是存储拷贝进行空间换时间。


(全文完)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值