springmvc中随时获得request(这种情况在为文件MultipartHttpServletRequest的请求下可以获得参数)

**

1.springmvc中随时获得request(这种情况在为文件MultipartHttpServletRequest的请求下可以获得参数)

**
1.在公共拦截HandlerInterceptorAdapter中设置属性
((ServletRequestAttributes)RequestContextHolder.getRequestAttributes()).
setAttribute(“request”, request, RequestAttributes.SCOPE_REQUEST);

2.在所需地方获取request
HttpServletRequest request = (HttpServletRequest)
((ServletRequestAttributes) RequestContextHolder.getRequestAttributes())
.getAttribute(“request”, RequestAttributes.SCOPE_REQUEST);

你可能感兴趣的:(springmvc中随时获得request(这种情况在为文件MultipartHttpServletRequest的请求下可以获得参数))