在一个请求的子线程中通过RequestContextHolder.getRequestAttributes()
获取 requestAttributes 为空。
1、方式一
在子线程启动前,加入下面的代码,可以使 requestAttributes 被子线程继承。
RequestAttributes requestAttributes = RequestContextHolder.getRequestAttributes();
RequestContextHolder.setRequestAttributes(requestAttributes, true);
2、方式二
设置DispatcherServlet的threadContextInheritable属性设置为true。
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.DispatcherServlet;
import javax.annotation.PostConstruct;
@Configuration
public class ThreadContextInheritableConfig {
@Autowired
DispatcherServlet dispatcherServlet;
@PostConstruct
public void init() {
// 将 LocaleContext 和 RequestAttributes 公开为子线程可继承。便于子线程获取到父线程的request
dispatcherServlet.setThreadContextInheritable(true);
}
}
3、总结
这两种方法殊途同归,之所以子线程能获取到,都是将requestAttributes保存在InheritableThreadLocal中,从而保证在由当前线程创建的子线程中依然可以获取到数据。但是这两种方法在使用线程池依然无法生效。反而会找出线程数据泄露。