1 基本概念

基本概念
程序(program):是为完成特定任务、用某种语言编写的一组指令的集合。即指一段静态的代码,静态对象。
进程(process):是程序的一次执行过程,或是正在运行的一个程序。是一个动态的过程:有它自身的产生、存在和消亡的过程(生命周期)。如:运行中的QQ,运行中的MP3播放器。
程序是静态的,进程是动态的。进程作为资源分配的单位,系统在运行时会为每个进程分配不同的内存区域。
线程(thread):进程可进一步细化为线程,是CPU动态分配资源去执行一个程序内的代码路径,即一个代码执行路径。线程作为调度和执行的单位,每个线程拥有独立的运行栈和程序计数器(pc),线程切换的开销小。
若一个进程同一时间并行执行多个线程,就是支持多线程的。一个进程中的多个线程共享相同的内存单元/内存地址空间。它们从同一堆中分配对象,可以访问相同的变量和对象。这就使得线程间通信更简便、高效。但多个线程操作共享的系统资源可能就会带来安全的隐患。
一个Java应用程序java.exe,其实至少有三个线程:main()主线程、gc()垃圾回收线程、异常处理线程(然如果发生异常,会影响主线程)。
单核CPU:其实是一种假的多线程,因为在一个时间单元内,也只能执行一个线程的任务。但是因为CPU切换的时间单元特别短,因此感觉不出来。
多核CPU:如果是多核的话程序可以多核并行运行。

线程的优先级
级别:MAX_PRIORITY:10;MIN _PRIORITY:1;NORM_PRIORITY:5
方法:getPriority() :返回线程优先值/setPriority(int newPriority) :改变线程的优先级
说明:线程创建时继承父线程的优先级;低优先级只是获得调度的概率低,并非一定是在高优先级线程之后才被调用

线程的分类
Java中的线程分为两类:一种是守护线程,一种是用户线程。

  • 它们在几乎每个方面都是相同的,唯一的区别是判断JVM何时离开。
  • 守护线程是用来服务用户线程的,通过在start()方法前调用,thread.setDaemon(true)可以把一个用户线程变成一个守护线程。
  • Java垃圾回收就是一个典型的守护线程,若JVM中都是守护线程,当前JVM将退出(即没有要服务的用户线程了,守护进程没有服务的对象了,故整个JVM就会退出)。

    2 Thread类的生命周期

    参考文章
    线程状态切换
    并发编程—Java线程的6种状态及切换

    操作系统线程的五种状态

    新建(NEW):当一个Thread类或其子类的对象被声明并创建时,新生的线程对象处于新建状态。
    就绪(RUNNABLE):处于新建状态的线程被start()后,将进入线程队列等待CPU时间片,此时它已具备了运行的条件,只是没分配到CPU资源。
    运行(RUNNING):当就绪的线程被调度并获得CPU资源时,便进入运行状态,run()方法定义了线程的操作和功能。
    阻塞(BLOCKED):在某种特殊情况下,被人为挂起或执行输入输出操作时,让出CPU并临时中止自己的执行,进入阻塞状态。 BLOCKED状态包括三种类型状态:等待(wait)、睡眠(sleep)、阻塞(申请资源:I\O、对象的锁);
    死亡(DEAD):线程完成了它的全部工作或线程被提前强制性地中止或出现异常导致结束。

    Java线程的六种状态

    image.png
    六种状态来源佐证:Thread.class类里面的public enum State说明。
    新建(New):创建后尚未启动。
    可运行(Runnable):可能正在运行,也可能正在等待 CPU 时间片。可运行状态(RUNNABLE)相当于操作系统线程状态中的就绪状态(RUNNABLE)和运行状态(RUNNING)。
    阻塞(Blocking):等待获取一个排它锁,如果其线程释放了锁就会结束此状态。

    什么时候会释放锁?

    • 当前线程的同步方法、同步代码块执行结束。
    • 当前线程在同步代码块、同步方法中遇到break、return终止了该代码块或该方法的继续执行。
    • 当前线程在同步代码块、同步方法中出现了未处理的Error或Exception,导致异常结束。
    • 当前线程在同步代码块、同步方法中执行了线程对象的wait()方法,当前线程暂停,并释放锁。

    不会释放锁的操作?

    • 线程执行同步代码块或同步方法时,程序调用Thread.sleep()、Thread.yield()方法暂停当前线程的执行。
    • 线程执行同步代码块时,其他线程调用了该线程的suspend()方法将该线程挂起,该线程不会释放锁(同步监视器)。应尽量避免使用suspend()和resume()来控制线程。

无限期等待(Waiting):等待其它线程显式地唤醒,否则不会被分配 CPU 时间片。

进入方法 退出方法
没有设置 Timeout 参数的 Object.wait() 方法 Object.notify() / Object.notifyAll()
没有设置 Timeout 参数的 Thread.join() 方法 被调用的线程执行完毕
LockSupport.park() 方法 LockSupport.unpark() 方法

限期等待(Timed Waiting)
无需等待其它线程显式地唤醒,在一定时间之后会被系统自动唤醒。
调用 Thread.sleep() 方法使线程进入限期等待状态时,常常用“使一个线程睡眠”进行描述。
调用 Object.wait() 方法使线程进入限期等待或者无限期等待时,常常用“挂起一个线程”进行描述。
睡眠和挂起是用来描述行为,而阻塞和等待用来描述状态。
阻塞和等待的区别在于,阻塞是被动的,它是在等待获取一个排它锁。而等待是主动的,通过调用 Thread.sleep() 和 Object.wait() 等方法进入。

进入方法 退出方法
Thread.sleep() 方法 时间结束
设置了 Timeout 参数的 Object.wait() 方法 时间结束 / Object.notify() / Object.notifyAll()
设置了 Timeout 参数的 Thread.join() 方法 时间结束 / 被调用的线程执行完毕
LockSupport.parkNanos() 方法 -
LockSupport.parkUntil() 方法 -

死亡(Terminated)
可以是线程结束任务之后自己结束,或者产生了异常而结束。

关联与差别

参考文章:Java线程和操作系统线程的关系

green threads vs native threads

  • green threads:是一种由运行环境或虚拟机(VM)调度,而不是由本地底层操作系统调度的线程。绿色线程并不依赖底层的系统功能,模拟实现了多线程的运行,这种线程的管理调配发生在用户空间而不是内核空间,所以它们可以在没有原生线程支持的环境中工作。在Java 1.1中,绿色线程(至少在 Solaris 上)是JVM 中使用的唯一一种线程模型。 由于绿色线程和原生线程比起来在使用时有一些限制,随后的 Java 版本中放弃了绿色线程,转而使用native threads。
  • native threads:在 Java1.2 之后. Linux中的JVM是基于pthread实现的,即现在的Java中线程的本质,其实就是操作系统中的线程。

现在的Java中线程的本质,其实就是操作系统中的线程,JavaThread与操作系统thread是1对1的关系。
image.png
操作系统中的线程除去new和terminated状态,一个线程真实存在的状态,只有:

  • ready :表示线程已经被创建,正在等待系统调度分配CPU使用权。
  • running:表示线程获得了CPU使用权,正在进行运算。
  • waiting:表示线程等待(或者说挂起),让出CPU资源给其他线程使用。

为什么没有new和terminated状态?是因为这两种状态实际上并不存在于线程运行中,所以也没什么实际讨论的意义。
对于Java中的线程状态:

  • 无论是Timed Waiting ,Waiting还是Blocked,对应的都是操作系统线程的waiting(等待)状态。
  • 而Runnable状态,则对应了操作系统中的ready和running状态。

image.png

3 Thread类的常用方法

JavaTM 虚拟机支持多线程执行,线程是用Thread类来表示的。用户创建一个线程的唯一方式是创建一个该类的对象;每个线程都与这样一个对象相关联。在对应的Thread对象上调用start()方法将启动线程。

  1. /**
  2. * Thread类的常用方法
  3. * 1.start():启动当前线程,执行当前线程的run()
  4. * 2.run():通常需要重写Thread类中的此方法,将创建的线程要执行的操作声明在此方法中
  5. * 3.currentThread(): 静态方法,返回当前代码执行的线程
  6. * 4.getName()/setName():获取当前线程的名字/设置当前线程的名字
  7. * 5.yield():暂停当前正在执行的线程,把执行机会让给优先级相同或更高的线程;若队列中没有同优先级的线程,忽略此方法
  8. * 6.join():在线程a中调用线程b的join(),此时线程a就进入阻塞状态,直到线程b完全执行完以后,线程a才结束阻塞状态。
  9. * 7.sleep(long millitime):让当前线程“睡眠”指定时间的millitime毫秒)。在指定的millitime毫秒时间内,当前线程是阻塞状态的。
  10. * 8.isAlive():返回boolean,判断线程是否还活着
  11. * stop():已过时。当执行此方法时,强制结束当前线程。
  12. * resume():已过时。
  13. * suspend():已过时。
  14. */
  15. public class MyThread {
  16. public static void main(String[] args) throws InterruptedException {
  17. Thread subThread=new Thread(){
  18. @Override
  19. public void run() {
  20. super.run();
  21. System.out.println(this.getName());
  22. int i=0;
  23. while (i<10){
  24. //yield:暂停当前正在执行的线程,把执行机会让给优先级相同或更高的线程;若队列中没有同优先级的线程,忽略此方法
  25. if(i==20)
  26. this.yield();
  27. i++;
  28. System.out.println(this.getName()+i);
  29. }
  30. }
  31. };
  32. subThread.setName("子线程subThread");
  33. subThread.start();
  34. //join:在主线程代码调用子线程的join()方法,即必须等到子线程subThread执行完成了才会继续执行主线程的方法
  35. //哪里写代码哪里就被阻塞
  36. subThread.join();
  37. System.out.println("MainThread");
  38. }
  39. }

4 创建多线程的四大方式

在Java里面,线程是用Thread类来表示的。用户创建一个线程的唯一方式是创建一个该类的对象。而该类又分为多个构造函数以供创建。在Linux下,new Thread就是调用操作系统的clone方法
image.png

new Thread()

使用步骤

  • 继承Thread类并重写run()方法。
  • 调用Thread类的无参构造函数:Thread myThread=new MyThread();
  • 调用myThread.start()方法。

特征

  • 主进程无法获取线程的运算结果。
  • 每个线程都是通过某个特定Thread对象的run()方法来完成操作的,经常把run()方法的主体称为线程体。
  • 通过该Thread对象的start()方法来启动这个线程,而非直接调用run()。 ```java //自定义MyThread class MyThread extends java.lang.Thread { @Override public void run() {
    1. super.run();
    2. System.out.println("ThreadId:" + Thread.currentThread().getId());
    } }

//使用MyThread public void threadTest() { MyThread thread = new MyThread(); MyThread thread2 = new MyThread(); thread.start(); thread2.start(); }

//运行结果 ThreadId:55 ThreadId:56

  1. //使用匿名类实现
  2. ```java
  3. new Thread() {
  4. @Override
  5. public void run() {
  6. System.out.println("AA");
  7. }
  8. }.start();

new Thread(Runnable)

使用步骤

  • 定义子类,实现Runnable接口,子类中重写Runnable接口中的run方法或直接使用匿名对象new Runnable()。
  • 通过Thread类的构造函数创建线程对象:Thread myThread=Thread(Runnable target)
  • 调用Thread类的myThread.start()方法开启线程:其内部就是调用的Runnable子类接口的run方法。

特点:主进程无法获取线程的运算结果。
代码

  1. public class MyThread {
  2. public static void main(String[] args) throws InterruptedException {
  3. Runnable runnable = new Runnable() {
  4. @Override
  5. public void run() {
  6. System.out.println("ThreadId:" + Thread.currentThread().getId());
  7. }
  8. };
  9. Thread thread=new Thread(runnable);
  10. thread.start();
  11. System.out.println("main-ThreadId:" + Thread.currentThread().getId());
  12. }
  13. }
  14. //打印输出
  15. main-ThreadId:1
  16. ThreadId:12
  17. //=========不能仅这么用:这样用的结果就是线程都在主线程里面了=========
  18. public static void main(String[] args) throws InterruptedException {
  19. Runnable runnable = new Runnable() {
  20. @Override
  21. public void run() {
  22. System.out.println("ThreadId:" + Thread.currentThread().getId());
  23. }
  24. };
  25. runnable.run();
  26. System.out.println("Main-ThreadId:" + Thread.currentThread().getId());
  27. }
  28. //输出的结果
  29. ThreadId:1
  30. Main-ThreadId:1

new Thread(Callable)

实现Callable接口(可回调)。特点:可以拿到返回结果,可以处理异常。
与使用Runnable相比, Callable功能更强大些:

  • 相比run()方法,可以有返回值
  • 方法可以抛出异常
  • 支持泛型的返回值
  • 需要借助FutureTask类,比如获取返回结果 ```java @Test void FutureTaskTest() { //1.0 开启子线程线程=>使用Callable接口 Callable callable = new Callable() {

    1. @Override
    2. public String call() throws Exception {
    3. System.out.println("subThread be called " + System.currentTimeMillis());
    4. Thread.sleep(100);
    5. return "子线程";
    6. }

    }; FutureTask task = new FutureTask(callable); Thread thread = new Thread(task); thread.start();

    //2.0 主线程在futureTask执行完成后将会执行回调 try {

    1. //task
    2. String subThreadReturnValue = task.get();
    3. System.out.println(subThreadReturnValue);
    4. System.out.println("子线程返回值 " + System.currentTimeMillis());

    } catch (InterruptedException e) {

    1. e.printStackTrace();

    } catch (ExecutionException e) {

    1. e.printStackTrace();

    } }

//输出结果 subThread be called 1643163907580 子线程 子线程返回值 1643163907680

  1. <a name="VZax1"></a>
  2. ## 使用ThreadPoolExecutor创建
  3. <a name="mtaaE"></a>
  4. ### ThreadPoolExecutor的概念
  5. ThreadPoolExecutor即为线程池对象,通过线程池使用线程,性能会更稳定,也可以获取执行结果,并捕获异常。但是,在业务复杂情况下,一个异步调用可能会依赖于另一个异步调用的执行结果。
  6. > **ThreadPoolExecutor对象的七大参数**
  7. ```java
  8. int corePoolSize:核心线程数
  9. int maximumPoolSize:线程池最大的线程数
  10. workQueue:阻塞队列。如果任务过多,会自动将多余的任务放在队列里面。如果线程有空闲,就会去执行。最大值为Integer.Max。实际项目生产过程中,要使用压力测试查看任务的最大值
  11. long keepAliveTime:when the number of threads is greater than the core, this is the maximum time that excess idle threads(多余的线程) will wait for new tasks before terminating(释放的maximumPoolSize-corePoolSize,核心线程数不能释放)。
  12. TimeUnit unit:keepAliveTime的单位
  13. ThreadFactory threadFactory:线程的创建工厂
  14. RejectedExecutionHandler handler:如果队列满,按照指定的拒绝策略。ThreadPoolExecutor内部有实现4个拒绝策略,默认为AbortPolicy策略:
  15. CallerRunsPolicy:由调用execute方法提交任务的线程来执行这个任务
  16. AbortPolicy:抛出异常RejectedExecutionException拒绝提交任务
  17. DiscardPolicy:直接抛弃任务,不做任何处理
  18. DiscardOldestPolicy:去除任务队列中的第一个任务,重新提交

ThreadPoolExecutor的工作顺序

核心线程->阻塞队列->max线程->Reject->only core(keepAliveTime):正式工->加班deadline->临时工->做不了->没任务(fired)

  • 核心线程先执行任务:线程池创建,准备好core数量的核心线程,准备接受任务。
  • 阻塞队列装等待任务:核心线程满了,就将再进来的任务放入阻塞队列中。空闲的core就会自己去阻塞队列获取任务执行。
  • 阻塞队列感觉装不下了,再开辟新线程至Max:请求书>阻塞队列了,就直接开新线程执行,最大只能开到max指定的数量。
  • 阻塞队列再满了就Reject:开了max之后,阻塞队列还是满了就用RejectedExecutionHandler拒绝任务拒绝执行。
  • 非核心空闲任务指定时间内销毁:在指定的时间keepAliveTime以后,释放max-core这些线程。

image.png
例子:

  1. gulimall:
  2. threadpool:
  3. corePoolSize: 5
  4. maxPoolSize: 10
  5. linkedBlockDequeCapactiy: 200
  6. //其他参数暂时不予显示
  7. 代表的含义是:核心线程5个,最大线程10个,阻塞队列200个。
  8. 1、假如一下子进来了50个任务请求,因为没有达到阻塞队列的200上限,则是一直使用5个核心线程处理,多余的45(50-5)个任务进入阻塞队列排队等候被执行。
  9. 2、此时又进来了750个任务,此时任务数已经达到阻塞队列最长的200个(放不进了),这是则再开辟新线程:最大开辟线程数为10个,阻塞队列200个任务,多余590(800-10-200)个的任务则使用默认为AbortPolicy策略抛出异常处理。
  10. 3、多余开辟的5(10-5)个线程将会在指定时间keepAliveTime内销毁。

Q:使用线程为什么必须使用线程池里面的?
A:根据阿里巴巴手册:线程资源必须通过线程池提供,不允许在应用中自行显式创建线程。使用线程池的好处是减少在创建和销毁线程上所消耗的时间以及系统资源的开销,解决资源不足的问题,如果不使用线程池,有可能造成系统创建大量同类线程而导致消耗完内存或者“过度切换”的问题

Q:为什么创建线程池不用Executors中提供的方法?
A:线程池不允许使用Executors去创建,而是通过ThreadPoolExecutor(如Spring+new ThreadPoolExecutor或单例new ThreadPoolExecutor)的方式,这样的处理方式让写的同学更加明确线程池的运行规则,规避资源耗尽的风险。
同时Executors返回的线程池对象有如下弊端:

  • FixedThreadPool和SingleThreadPool:运行的请求队列长度为:Integer.MAX_VALUE,可能会堆积大量的请求,从而导致OOM。
  • CacheThreadPool和ScheduledThreadPool:运行的请求队列长度为:Integer.MAX_VALUE,线程数上限太大导致OOM。

Q:线程池的合理参数
生产环境中主要要配置的是corePoolSize、maximumPoolSize、workQueue。


CPU密集型 IO密集型
maximum
PoolSize
CPU密集的意思是该任务需要大量的运算,而没有阻塞,CPU一直全速运行,CPU密集任务只有在真正的多核CPU上才可能得到加速(通过多线程),而在单核CPU上,无论你开几个模拟的多线程该任务都不可能得到加速,因为CPU总的运算能力就那些。CPU密集型任务配置尽可能少的线程数量。

一般公式:maximumPoolSize=maxCPU核数 + 1个线程数
如2核心的CPU最大就使用3个线程(其中1个线程负责上下文调度)
IO密集型,即该任务需要大量的IO操作,即大量的阻塞,在单线程上运行IO密集型的任务会导致浪费大量的CPU运算能力花费在等待上,所以IO密集型任务中使用多线程可以大大的加速程序的运行,即使在单核CPU上,这种加速主要就是利用了被浪费掉的阻塞时间。IO密集时,由于任务线程并不是一直在执行任务,大部分线程都被阻塞,故需要多配置线程数。

一般参考公式:maximumPoolSize=CPU核数 / (1 - 阻塞系数) 阻塞系数在0.8 ~ 0.9左右
如:8核CPU:8/ (1 - 0.9) = 80个线程数。
更精确的公式如下:
image.png
corePoolSize corePoolSize=maximumPoolSize*20%
workQueue 默认为Integer.Max,不允许使用该值。而是要在满足业务的前提下做压测,尽量减少队列积压。

使用ThreadPoolExecutor

方式一:通过Spring+new ThreadPoolExecutor()

步骤1:核心类(往Spring框架中加入ThreadPoolExecutor对象)

  1. package com.efly.gulimall.product.config;
  2. import com.efly.gulimall.product.entity.MyThreadPoolProperties;
  3. import org.springframework.boot.context.properties.EnableConfigurationProperties;
  4. import org.springframework.context.annotation.Bean;
  5. import org.springframework.context.annotation.Configuration;
  6. import java.util.concurrent.Executors;
  7. import java.util.concurrent.LinkedBlockingDeque;
  8. import java.util.concurrent.ThreadPoolExecutor;
  9. import java.util.concurrent.TimeUnit;
  10. @Configuration
  11. @EnableConfigurationProperties(MyThreadPoolProperties.class)
  12. public class MyThreadPoolConfiguration {
  13. /*
  14. *
  15. MyThreadPoolProperties已经注入到Spring框架了,所以此处参数可以直接用,Spring框架会从其内部拿到该对象
  16. * */
  17. @Bean
  18. public ThreadPoolExecutor myThreadPoolExecutor(MyThreadPoolProperties properties) {
  19. ThreadPoolExecutor threadPoolExecutor = new ThreadPoolExecutor(properties.getCorePoolSize(),
  20. properties.getMaxPoolSize(),
  21. properties.getKeepAliveTime(),
  22. TimeUnit.HOURS,
  23. new LinkedBlockingDeque<>(properties.getLinkedBlockDequeCapactiy()),
  24. Executors.defaultThreadFactory(),
  25. new ThreadPoolExecutor.AbortPolicy());
  26. return threadPoolExecutor;
  27. }
  28. }

步骤2:核心类需要引入的yaml的配置文件
@ConfigurationProperties一定要搭配@Component或@EnableConfigurationProperties才能生效。

  1. package com.efly.gulimall.product.entity;
  2. import lombok.Data;
  3. import org.springframework.boot.context.properties.ConfigurationProperties;
  4. @ConfigurationProperties(prefix = "gulimall.threadpool")
  5. @Data
  6. public class MyThreadPoolProperties {
  7. private Integer corePoolSize;
  8. private Integer maxPoolSize;
  9. private Integer keepAliveTime;
  10. private Integer linkedBlockDequeCapactiy;
  11. }

其对应的yaml文件

  1. gulimall:
  2. threadpool:
  3. corePoolSize: 5
  4. maxPoolSize: 10
  5. linkedBlockDequeCapactiy: 200
  6. keepAliveTime: 2

步骤3:实际编码开始使用上面的线程池对象

  1. @Autowired
  2. private ThreadPoolExecutor executor;
  3. void contextLoads() {
  4. Runnable runnable=new Runnable() {
  5. @Override
  6. public void run() {
  7. System.out.println("Runnable");
  8. }
  9. };
  10. /*execute:Executes the given task sometime in the future. The task may execute in a new thread or in an existing pooled thread.
  11. * 里面最核心的代码:
  12. * Worker(Runnable firstTask) {
  13. * setState(-1); // inhibit interrupts until runWorker
  14. * this.firstTask = firstTask;
  15. * this.thread = getThreadFactory().newThread(this);
  16. * }
  17. */
  18. executor.execute(runnable);
  19. }

方式二:通过Executor提供的方法(不推荐)

执行器 ( Executors) 类有许多静态工厂方法用来构建线程池,该类的作用类似于 Arrays之于Array,Collections之于Collection,即Executors之于Executor 。image.png
实际使用(核心方法: ExecutorService threadPool = Executors.newFixedThreadPool(5); threadPool.execute()

  1. package com.fly.ecoco10;
  2. import java.util.concurrent.ExecutorService;
  3. import java.util.concurrent.Executors;
  4. public class MyThreadPoolDemo {
  5. public static void main(String[] args) {
  6. // Array Arrays(辅助工具类)
  7. // Collection Collections(辅助工具类)
  8. // Executor Executors(辅助工具类)
  9. // 一池5个处理线程(用池化技术,一定要记得关闭)
  10. ExecutorService threadPool = Executors.newFixedThreadPool(5);
  11. //模拟10个用户来办理业务,每个用户就是一个来自外部请求线程
  12. try {
  13. //循环十次,模拟业务办理,让5个线程处理这10个请求
  14. for (int i = 0; i < 10; i++) {
  15. final int tempInt = i;
  16. threadPool.execute(() -> {
  17. System.out.println(Thread.currentThread().getName() + "\t 给用户:" + tempInt + " 办理业务");
  18. });
  19. }
  20. } catch (Exception e) {
  21. e.printStackTrace();
  22. } finally {
  23. threadPool.shutdown();
  24. }
  25. }
  26. }

内部源码

  1. //上面两个方法其内部的源码
  2. public static ExecutorService newFixedThreadPool(int nThreads) {
  3. return new ThreadPoolExecutor(nThreads, nThreads,0L, TimeUnit.MILLISECONDS,new LinkedBlockingQueue<Runnable>());
  4. }
  5. public static ExecutorService newSingleThreadExecutor() {
  6. return new FinalizableDelegatedExecutorService
  7. (new ThreadPoolExecutor(1, 1,0L, TimeUnit.MILLISECONDS,new LinkedBlockingQueue<Runnable>()));
  8. }

10 ThreadLocal

怎么使用

1、ThreadLocal类概述

  • ThreadLocal并不解决线程间共享数据的问题,其专门适用于变量在不同线程间进行隔离且在同一个线程内不同方法间共享数据的场景。
  • 其通过隐式的在不同线程内创建独立实例副本避免了实例线程安全的问题。每个线程持有一个只属于自己的专属Map并维护了ThreadLocal对象与具体实例的映射,该Map由于只被持有它的线程访问,故不存在线程安全以及锁的问题:每个Thread线程内部都有一个 ThreadLocal.ThreadLocalMap对象,ThreadLocalMap内部结构是一个Entry[]数组,每个Entry存储了<ThreadLocal,value>值。ThreadLocalMap的Entry对于ThreadLocal的引用为弱引用,避免了TheadlLocal对象无法被回收的问题,但是ThreadLocal对象在使用之后还是需要调用remove()方法进行回收。
  • 在线程A调用实例化的ThreadLoacl对象的set方法,可以确保数据是设置线程A里面的,后续只要是在线程A里面,即可直接使用threadLocalObj.get方法直接读取value使用

2、ThreadLocal类的方法介绍
构造方法:new ThreadLocal()
实例方法: T get() 、 set(T value) 、void remove()
静态方法: static ThreadLocal withInitial(Supplier<? extends S> supplier)

  1. //ThreadLocal实例通常总是以静态字段初始化如下
  2. static ThreadLocal<Long> threadLocalUser = new ThreadLocal<>();
  3. //设置值
  4. threadLocalUser.set(10L);
  5. //get值
  6. threadLocalUser.get();
  7. //remove值
  8. threadLocalUser.remove();
  1. 特别注意ThreadLocal一定要在finally中清除。

这是因为当前线程执行完相关代码后,很可能会被重新放入线程池中,如果ThreadLocal没有被清除,该线程执行其他代码时,会把上一次的状态带进去。

  1. try {
  2. threadLocalUser.set(user);
  3. ...
  4. } finally {
  5. threadLocalUser.remove();
  6. }

为了保证能释放ThreadLocal关联的实例,我们可以通过AutoCloseable接口配合try (resource) {…}结构,让编译器自动为我们关闭。

  1. package com.efly.gulimall.product.config;
  2. public class UserContext implements AutoCloseable {
  3. static final ThreadLocal<String> ctx = new ThreadLocal<>();
  4. public UserContext(String user) {
  5. ctx.set(user);
  6. }
  7. public static String currentUser() {
  8. return ctx.get();
  9. }
  10. @Override
  11. public void close() {
  12. ctx.remove();
  13. }
  14. }
  15. ##使用处##
  16. public class test{
  17. @ResponseBody
  18. @RequestMapping("/test")
  19. public void test() throws UnsupportedEncodingException, InterruptedException {
  20. try (UserContext ctx = new UserContext("Bob")) {
  21. // 可任意调用UserContext.currentUser():
  22. String currentUser = UserContext.currentUser();
  23. System.out.println(currentUser);
  24. } // 在此自动调用UserContext.close()方法释放ThreadLocal关联对象
  25. }
  26. }
  27. //效果
  28. Bob

代码演示

  1. package juc;
  2. import java.util.concurrent.CountDownLatch;
  3. import java.util.concurrent.TimeUnit;
  4. public class ThreadLocalDemo {
  5. //配置了多个ThreadLocal对象
  6. static ThreadLocal<Integer> threadLocalOne = ThreadLocal.withInitial(() -> 0);
  7. static ThreadLocal<Long> threadLocalTwo = ThreadLocal.withInitial(() -> 0L);
  8. static CountDownLatch countDownLatch = new CountDownLatch(2);
  9. public static void main(String[] args) {
  10. //线程1
  11. Thread threadOne = new Thread(() -> {
  12. try {
  13. threadLocalOne.set(10);
  14. threadLocalTwo.set(100L);
  15. } catch (Exception ex) {
  16. throw ex;
  17. } finally {
  18. countDownLatch.countDown();
  19. }
  20. });
  21. threadOne.start();
  22. //线程2
  23. Thread threadTwo = new Thread(() -> {
  24. try {
  25. threadLocalOne.set(20);
  26. threadLocalTwo.set(200L);
  27. } catch (Exception ex) {
  28. throw ex;
  29. } finally {
  30. countDownLatch.countDown();
  31. }
  32. });
  33. threadTwo.start();
  34. //主线程在等待
  35. try {
  36. countDownLatch.await(100, TimeUnit.MILLISECONDS);
  37. } catch (InterruptedException e) {
  38. e.printStackTrace();
  39. }
  40. System.out.println(threadLocalOne.get());
  41. System.out.println(threadLocalTwo.get());
  42. //记得remove
  43. threadLocalOne.remove();
  44. threadLocalTwo.remove();
  45. }
  46. }
  47. //输出结果
  48. 0
  49. 0

ThreadLocal内存泄露的问题

两个问题:

  • 为什么ThreadLocalMap内部存储数据的Entry存储Key时会使用弱引用?
  • 既然已经有弱引用了,为什么还需要手动remove()?

首先看源码

  1. static class ThreadLocalMap {
  2. static class Entry extends WeakReference<ThreadLocal<?>> {
  3. Object value;
  4. Entry(ThreadLocal<?> k, Object v) {
  5. super(k);
  6. value = v;
  7. }
  8. }
  9. }

image.png
概述:虽然弱引用,保证了key指向的ThreadLocal对象能被及时回收,但是v指向的value对象是需要ThreadLocalMap调用get、set时发现key为null时才会去回收整个entry、value,因此弱引用不能100%保证内存不泄露。我们要在不使用某个ThreadLocal对象后,手动调用remoev方法来删除它,尤其是在线程池中,不仅仅是内存泄露的问题,因为线程池中的线程是重复使用的,意味着这个线程的ThreadLocalMap对象也是重复使用的,如果我们不手动调用remove方法,那么后面的线程就有可能获取到上个线程遗留下来的value值,造成bug。
阿里规范:
image.png

源码分析

类的层级关系:Thread、ThreadLocal和ThreadLocalMap之间的关系

image.png

源码逻辑分析

image.png

源码细解

背景:每个Thread线程类内部都有维护了自己的threadLocals变量,该变量是ThreadLocal.ThreadLocalMap类型的

  1. package java.lang;
  2. public class Thread implements Runnable {
  3. private static native void registerNatives();
  4. static {
  5. registerNatives();
  6. }
  7. ThreadLocal.ThreadLocalMap threadLocals = null;
  8. }

使用ThreadLocal类:ThreadLocal实例通常总是以静态字段初始化如下

  1. static ThreadLocal<Long> threadLocalUser = new ThreadLocal<>();
  2. threadLocalUser.set(10L);
  3. threadLocalUser.get();

set、get、remove源码分析

  • 每个线程Thread对象内部都有一个ThreadLocalMap对象,该Map对象内部有个Entry[]数据,每个Entry的Key是ThreadLocal实例,value是threadLocal.set(value)方法的参数。
  • set(T value)方法: Thread->ThreadLocalMap->Entries(有N个Entry)。
  • get()方法:ThreadLocal->得到CurrentThread->ThreadLocalMap.Entries[ThreadLocal,value]->Entry。 ```java //ThreadLocal的set/get方法:得到当前的线程,从该线程得到一个ThreadLocalMap对象,

public class ThreadLocal { public void set(T value) { Thread t = Thread.currentThread(); ThreadLocalMap map = getMap(t); if (map != null) map.set(this, value); //不为空set,this即为调用的new ThreadLocal()实例对象 else createMap(t, value); //为空创建一个map对象 } void createMap(Thread t, T firstValue) { t.threadLocals = new ThreadLocalMap(this, firstValue);//this即为调用的new ThreadLocal()实例对象 }

  1. //根据线程得到该线程的ThreadLocalMap
  2. ThreadLocalMap getMap(Thread t) {
  3. return t.threadLocals;
  4. }
  5. public T get() {
  6. Thread t = Thread.currentThread();
  7. ThreadLocalMap map = getMap(t);
  8. if (map != null) {
  9. ThreadLocalMap.Entry e = map.getEntry(this);
  10. if (e != null) {
  11. @SuppressWarnings("unchecked")
  12. T result = (T)e.value;
  13. return result;
  14. }
  15. }
  16. return setInitialValue();
  17. }
  18. public void remove() {
  19. ThreadLocalMap m = getMap(Thread.currentThread());
  20. if (m != null)
  21. m.remove(this);
  22. }
  23. private void remove(ThreadLocal<?> key) {
  24. Entry[] tab = table;
  25. int len = tab.length;
  26. int i = key.threadLocalHashCode & (len-1);
  27. for (Entry e = tab[i];
  28. e != null;
  29. e = tab[i = nextIndex(i, len)]) {
  30. if (e.get() == key) {
  31. e.clear(); //内部的方法://this.referent = null;
  32. expungeStaleEntry(i);
  33. return;
  34. }
  35. }
  36. }

}

  1. ThreadLocalMap数据结构:ThreadLocalMapThreadLocal的内部类,内部用Entry来进行存储数据,ThreadLocalMap内部的的Entry<k,v>的key即为为ThreadLocal对象,value为调用set设置的值。
  2. ```java
  3. package java.lang;
  4. public class ThreadLocal<T> {
  5. static class ThreadLocalMap {
  6. //真正的数据存在Entry<k,v>数组里面,Entry的key即ThreaLocal的实例,v即为threadLocal.set(value)设置的value。
  7. private Entry[] table;
  8. static class Entry extends WeakReference<ThreadLocal<?>> {
  9. Object value;
  10. Entry(ThreadLocal<?> k, Object v) {
  11. super(k);
  12. value = v;
  13. }
  14. }
  15. }
  16. }

使用案例

结合登录拦截器的案例

  1. ###1.0 拦截器 ###
  2. package com.efly.gulimall.product.interceptor;
  3. import com.efly.gulimall.product.model.StudentVO;
  4. import org.springframework.web.servlet.HandlerInterceptor;
  5. import javax.servlet.http.HttpServletRequest;
  6. import javax.servlet.http.HttpServletResponse;
  7. //存入
  8. public class LoginInterceptor implements HandlerInterceptor {
  9. public static ThreadLocal<StudentVO> threadLocalUser = new ThreadLocal<>();
  10. @Override
  11. public boolean preHandle(HttpServletRequest request,
  12. HttpServletResponse response,
  13. Object handler) throws Exception {
  14. StudentVO value = new StudentVO();
  15. value.setAge(23);
  16. threadLocalUser.set(value);
  17. return true;
  18. }
  19. }
  20. ###2.0 使用 ###
  21. @RequestMapping("/testThreadLocal1")
  22. public void testThreadLocal1() {
  23. StudentVO studentVO = LoginInterceptor.threadLocalUser.get();
  24. System.out.println(studentVO);
  25. //使用后一定要remove,否则线程复用的时候数据会污染
  26. LoginInterceptor.threadLocalUser.remove();
  27. testThreadLocal2();
  28. }
  29. //被调用方法,
  30. public void testThreadLocal2() {
  31. //如果上面threadLocalUser.remove(),则拿到的值将是null
  32. StudentVO studentVO = LoginInterceptor.threadLocalUser.get();
  33. System.out.println(studentVO);
  34. }

应用:优雅的RequestContextHolder

RequestContextHolder是指持有当前线程上下文的Request/Response容器。其核心就是类内部有两个私有静态变量private static ThreadLocal<RequestAttributes>
RequestContextHolder的应用场景:

  • 通常在Service层是没有request和response对象的,如果想要在Service层使用Request对象,直接从Controlller传过来的话太粗暴,我们可以使用SpringMVC提供的RequestContextHolder。
  • 用线程池执行任务时非主线程是没有请求数据的,可以通过该方法设置线程中的request数据。RequestContextHolder.setRequestAttributes(attributes) ```xml
#####################################################源码解析

public abstract class RequestContextHolder { //1.0 内部ThreadLocal变量 private static final ThreadLocal requestAttributesHolder = new NamedThreadLocal(“Request attributes”); private static final ThreadLocal inheritableRequestAttributesHolder = new NamedInheritableThreadLocal(“Request context”);

  1. //2.0 设置值(往ThreadLocal对象里面设置值,即等于往当前Thread里面设置值)
  2. public static void setRequestAttributes(@Nullable RequestAttributes attributes, boolean inheritable) {
  3. if (attributes == null) {
  4. resetRequestAttributes();
  5. } else if (inheritable) {
  6. inheritableRequestAttributesHolder.set(attributes);
  7. requestAttributesHolder.remove();
  8. } else {
  9. requestAttributesHolder.set(attributes);
  10. inheritableRequestAttributesHolder.remove();
  11. }
  12. }
  13. //3.0 读取值:getRequestAttributes()方法,相当于直接获取ThreadLocal里面的值,这样就保证了每一次获取到的Request是该请求的request.
  14. @Nullable
  15. public static RequestAttributes getRequestAttributes() {
  16. RequestAttributes attributes = (RequestAttributes)requestAttributesHolder.get();
  17. if (attributes == null) {
  18. attributes = (RequestAttributes)inheritableRequestAttributesHolder.get();
  19. }
  20. return attributes;
  21. }

}

#####################################################日常使用

//1.0 设值:从主线程里面读取到RequestAttributes对象,然后将其设置到子线程里面。 RequestAttributes attributes = RequestContextHolder.getRequestAttributes(); CompletableFuture getAddressFuture = CompletableFuture.runAsync(() -> { // 把旧RequestAttributes放到新线程的RequestContextHolder中,该RequestContextHolder对象数据即在当前Thread下 RequestContextHolder.setRequestAttributes(attributes); // 远程查询所有的收获地址列表 List address; }, threadPoolExecutor);

//2.0 读值 ServletRequestAttributes requestAttributes = (ServletRequestAttributes) RequestContextHolder.getRequestAttributes(); if (requestAttributes != null) { HttpServletRequest request = requestAttributes.getRequest(); //还可以拿到Response //HttpServletResponse response = requestAttributes.getResponse(); }

  1. 使用案例:自定义FeignConfig,解决Feign远程调用丢失的问题(在Config方法类里面拿到Controller控制层里面的Request对象,并做封装再分发)
  2. ```xml
  3. package com.efly.gulimall.product.config;
  4. import feign.RequestInterceptor;
  5. import feign.RequestTemplate;
  6. import org.springframework.context.annotation.Bean;
  7. import org.springframework.context.annotation.Configuration;
  8. import org.springframework.web.context.request.RequestContextHolder;
  9. import org.springframework.web.context.request.ServletRequestAttributes;
  10. import javax.servlet.http.HttpServletRequest;
  11. @Configuration
  12. public class MyFeignConfig {
  13. @Bean
  14. public RequestInterceptor requestInterceptor() {
  15. return new RequestInterceptor() {
  16. @Override
  17. public void apply(RequestTemplate template) {
  18. //1. 使用RequestContextHolder拿到当前线程的Request(直接从当前Thread.currentThread里拿即可,而不用通过传递的方式)
  19. ServletRequestAttributes requestAttributes = (ServletRequestAttributes) RequestContextHolder.getRequestAttributes();
  20. if (requestAttributes != null) {
  21. HttpServletRequest request = requestAttributes.getRequest();
  22. //还可以拿到Response
  23. //HttpServletResponse response = requestAttributes.getResponse();
  24. if (request != null) {
  25. //2. 将老请求得到cookie信息放到feign请求上
  26. String cookie = request.getHeader("Cookie");
  27. template.header("Cookie", cookie);
  28. }
  29. }
  30. }
  31. };
  32. }
  33. }