InheritableThreadLocal NullPointException & 线程池环境下使用TTL进行线程上下文传递
背景:因为业务需要,在某个接口处理超过3秒,就即时返回。因此我使用了Future的 超时特性。然后我又用线程池去处理Future任务。同时我之前又加了一个切面,那么切面有一个InheritableThreadLocal变量,用于存放请求上下文信息。原来是ThreadLocal,但是子线程也需要用到,所以切换到了InheritableThreadLocal。就是这个InheritableThreadLocal在线程池中导致了NPE问题
关键词:InheritableThreadLocal 空指针异常 Future NPE
原因
InheritableThreadLocal 无法在线程池中获取到父线程的信息。我这里,Future 是在线程池中执行的,所以导致了InheritableThreadLocal 抛出 NullPointException
解决方案
先说解决方案
不使用线程池,每次执行都new 一个线程。
-
使用阿里的 transmittable-thread-local
-
引入maven
<dependency> <groupId>com.alibaba</groupId> <artifactId>transmittable-thread-local</artifactId> <version>2.12.4</version> </dependency>
-
修饰Runnable和Callable
Runnable
//
-