现象:
HttpServletRequest request =((ServletRequestAttributes) RequestContextHolder.getRequestAttributes()).getRequest();
报空指针异常,java.lang.NullPointerException: null。
原因:
在代码中开启了子线程,在子线程中写了此段代码。
我这边是由于用了parallelStream,在并行流的业务代码中尝试获取Request。
解析:
1、RequestContextHolder.getRequestAttributes()为null,是由于保存requestAttributes的对象是线程隔离的ThreadLocal对象,当http请求发送到服务端时,每个请求会开启一个线程来处理,由RequestContextListener来初始化RequestContextHolder。
RequestContextHolder.setRequestAttributes(attributes);
当开启了子线程时,不会自动调用setRequestAttributes方法,所以从ThreadLocal中获取时为null
2、parallelStream是会开启子线程的,由于上述原因引发了异常
解决:
1、由主线程获取,传递给子线程
2、不要用并行流,parallelStream改为stream