码迷,mamicode.com
首页 > 编程语言 > 详细

使用多线程时,传递 request 对象丢失

时间:2020-04-22 19:48:49      阅读:243      评论:0      收藏:0      [点我收藏+]

标签:图片   www   Servle   程序   adl   信息   private   att   pre   

1.原因描述

我们在工作中遇到耗时的一些操作时我们会使用多线程或者mq来解决以便提高程序的响应速度。但是使用多线程时遇到一个问题,我单独开一个线程去进行其他逻辑处理时,在发送消息之前(未开启多线程时)我们是可以获取到 request 信息的,但是在新开的线程中确是无法获取到 request 信息(request is  null)。

2.代码演示

主线程代码

技术图片

 

 

 

子线程代码

 技术图片

 

 3.错误描述

 由上图可知子线程无法获取到 request 信息,直接报了 java.lang.NullPointerException。

原因:request 信息是存储在 ThreadLocal 中的,所以子线程根本无法获取到主线程的  request 信息。

/**
* 返回当前线程上下文request信息
*
* @return
*/
public static HttpServletRequest getCurrentRequestInfo() {
ServletRequestAttributes servletRequestAttributes = (ServletRequestAttributes) RequestContextHolder.getRequestAttributes();
return servletRequestAttributes.getRequest();
}

源码如下:

private static final ThreadLocal<RequestAttributes> requestAttributesHolder =
new NamedThreadLocal<RequestAttributes>("Request attributes");
/**
* Return the RequestAttributes currently bound to the thread.
* @return the RequestAttributes currently bound to the thread,
* or {@code null} if none bound
*/
public static RequestAttributes getRequestAttributes() {
RequestAttributes attributes = requestAttributesHolder.get();
if (attributes == null) {
attributes = inheritableRequestAttributesHolder.get();
}
return attributes;
}

4.解决方案

在新开子线程之前 新增二行代码,如下,

// 将RequestAttributes对象设置为子线程共享
ServletRequestAttributes sra = (ServletRequestAttributes) RequestContextHolder.getRequestAttributes();
RequestContextHolder.setRequestAttributes(sra, true);

子线程代码

技术图片

 

子线程代码

技术图片

 

 到此问题完美解决,如果想要深入了解原因  需要看源码。

 

获取当前线程上下文信息方法地址:https://www.cnblogs.com/ming-blogs/p/12754837.html

使用多线程时,传递 request 对象丢失

标签:图片   www   Servle   程序   adl   信息   private   att   pre   

原文地址:https://www.cnblogs.com/ming-blogs/p/12755261.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!