原来她叫ThreadLocal

ThreadLocal类是什么:

This class provides thread-local variables. These variables differ from their normal counterparts in that each thread that accesses one (via its get or set method) has its own, independently initialized copy of the variable. ThreadLocal instances are typically private static fields in classes that wish to associate state with a thread (e.g., a user ID or Transaction ID).
For example, the class below generates unique identifiers local to each thread. A thread's id is assigned the first time it invokes ThreadId.get() and remains unchanged on subsequent calls.

import java.util.concurrent.atomic.AtomicInteger;

public class ThreadId {
     // Atomic integer containing the next thread ID to be assigned
     private static final AtomicInteger nextId = new AtomicInteger(0);

     // Thread local variable containing each thread's ID
     private static final ThreadLocal<Integer>threadId =
         new ThreadLocal<Integer>() {
             @Override protected Integer initialValue() {
                 return nextId.getAndIncrement();
         }
     };

     // Returns the current thread's unique ID, assigning it if necessary
     public static int get() {
         return threadId.get();
     }
 }

Each thread holds an implicit reference to its copy of a thread-local variable as long as the thread is alive and the ThreadLocal instance is accessible; after a thread goes away, all of its copies of thread-local instances are subject to garbage collection (unless other references to these copies exist).

oracle官方文档的解释,翻译过来大概的意思是说,ThreadLocal的作用就是为每一个线程保存一个局部变量,这样可以做到每个线程的变量能够互相隔离,彼此不能互相访问。其实ThreadLocal应该叫ThreadLocalVariable更合适,所以我们也不能单单从名字上来判断啦。

看一下ThreadLocal的API:

//Creates a thread local variable.
ThreadLocal()

//Returns the value in the current thread's copy of this thread-local variable.
T   get()

//Returns the current thread's "initial value" for this thread-local variable.
protected T initialValue()

//Removes the current thread's value for this thread-local variable.
void    remove()

//Sets the current thread's copy of this thread-local variable to the specified value.
void    set(T value)

//Creates a thread local variable.
static <S> ThreadLocal<S&gt withInitial(Supplier<? extends S> supplier)

目前先集中精力关注前五个方法,即构造方法,get() initialValue() remove()set(T value)

构造方法肯定不说用了。所以首先来看一下initialValue()方法的源码:

    protected T initialValue() {
        return null;
    }

这个方法是提供给继承的子类复写用的,一般在某些特定的业务情景下,我们需要给ThreadLocal一个初始变量。

看一下set(T value)源码:

    public void set(T value) {
        Thread t = Thread.currentThread();
        ThreadLocalMap map = getMap(t);
        if (map != null)
            map.set(this, value);
        else
            createMap(t, value);
    }

包括其中的getMap()方法:

    ThreadLocalMap getMap(Thread t) {
        return t.threadLocals;
    }

这个方法就是通过获得当前线程来获得该线程所持有的ThreadLocal对象,然后通过getMap()方法来获得一个ThreadLocalMap对象,最后根据是否为空,来决定是直接set还是先create再set

接下来是get()方法:

    public T get() {
        Thread t = Thread.currentThread();
        ThreadLocalMap map = getMap(t);
        if (map != null) {
            ThreadLocalMap.Entry e = map.getEntry(this);
            if (e != null) {
                @SuppressWarnings("unchecked")
                T result = (T)e.value;
                return result;
            }
        }
        return setInitialValue();
    }

关键代码就是通过map.getEntry()来获得一个ThreadLocalMap.Entry,然后再取出其中的值

接下来是remove()方法:

     public void remove() {
         ThreadLocalMap m = getMap(Thread.currentThread());
         if (m != null)
             m.remove(this);
     }

调用ThreadLocalMap的remove方法,来移除掉该ThreadLocal所对应的局部变量

小结:

有关ThreadLocal的源码分析,进一步会涉及到ThreadLocalMap是如何进行set()的,如何get(),remove()的,其中会涉及到一些数据结构,比如继承自WeakReference的Entry数组,哈希值的计算等,不过在此没有再进行深入一布的分析。这次进行一波简单的分析,一来是为了给自己扫盲,而来是让自己对这个ThreadLocal有一个关注。写到这里,又去查了一下Spring框架是如何实现并发处理的,貌似还和这个ThreadLocal有关系,哈!好有意思,所以会考虑再跟Spring框架结合来一波分析。

动手实践

我发现自己还真和ThreadLocal杠上了。这不,结合着自己,自己用Java实现了一个简单的ThreadLocal类。毕竟动手操作一下,也有助于自己对其的理解嘛。

看过别人写的代码之后,我思考想了一下如果要实现这个简单的ThreadLocal,哪些点是核心,最为重要的。

想了一下,觉着线程和变量之间是一个K-V的关系,通过线程K就可以获得其变量,所以就需要用一个Map来封装这些数据。不过还有十分重要的一点就是,不同线程能够对该Map进行同步操作。

所以首先就需要声明一个Map:

private Map<Thread, Object> valueMap = Collections.synchronizedMap(new HashMap<Thread, Object>());

注意到该Map为 synchronizedMap。不过至于synchronizedMap是怎样的一个类,其实我也不懂。这里就先不说啦。

实现ThreadLocal的set()方法:

    public void set(Object newValue) {
        valueMap.put(Thread.currentThread(), newValue);
    }

很简单,一个put方法就搞定了。

接下来实现ThreadLocal的get()方法:

    public Object get() {
        Thread thread = Thread.currentThread();
        Object o = valueMap.get(thread);
        if (o == null && !valueMap.containsKey(thread)) {
            o = initialValue();
            valueMap.put(thread, o);
        }
        return o;
    }

如果该线程的ThreadLocal中还没有对象,则为其初始化一个值:null

    public Object initialValue() {
        return null;
    }

接下来实现ThreadLocal的remove()方法:

    public void remove() {
        valueMap.remove(Thread.currentThread());
    }

这样一来一个简单的ThreadLocal就搞定啦

ThreadLocal在Spring中的应用

总结了这么多ThreadLocal的作用,再细细考虑一下,ThreadLocal如果说要在Spring中起什么作用的话,就是利用"以空间换取时间"的方法很好了解决了线程同步访问问题。之前我们在解决同步问题,用的是同步块:Synchronized。Synchronized实现同步是"以时间换空间"的方法,不过相比于这个方法,效率较低。说到ThreadLocal在Spring的应用,将一些单例模式的bean绑定到了每一个线程上,比如对于数据库的连接、事务资源。

总结

在网上找了很多有关ThreadLocal在Spring中的应用,有用的不多,看完之后感觉收获也不是太大。这一块以后在深入学习Spring的过程中也要稍加留意!

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,657评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,662评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,143评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,732评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,837评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,036评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,126评论 3 410
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,868评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,315评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,641评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,773评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,470评论 4 333
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,126评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,859评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,095评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,584评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,676评论 2 351

推荐阅读更多精彩内容

  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,637评论 18 139
  • 前言 ThreadLocal很多同学都搞不懂是什么东西,可以用来干嘛。但面试时却又经常问到,所以这次我和大家一起学...
    liangzzz阅读 12,431评论 14 228
  • 从三月份找实习到现在,面了一些公司,挂了不少,但最终还是拿到小米、百度、阿里、京东、新浪、CVTE、乐视家的研发岗...
    时芥蓝阅读 42,218评论 11 349
  • Android Handler机制系列文章整体内容如下: Android Handler机制1之ThreadAnd...
    隔壁老李头阅读 7,627评论 4 30
  • 原创文章&经验总结&从校招到A厂一路阳光一路沧桑 详情请戳www.codercc.com 1. ThreadLoc...
    你听___阅读 6,731评论 8 19