0%

spring获取当前request

获取当前request

有时候需要在处理业务的时候用到request对象,可以使用该方法获取

1
HttpServletRequest request = ((ServletRequestAttributes) (RequestContextHolder.currentRequestAttributes())).getRequest();

使用RequestContextHolder.currentRequestAttributes()获取的RequestAttributes对象是线程局部变量(ThreadLocal),request对象也是线程局部变量

欢迎关注我的其它发布渠道