如何在springmvc中获取request对象

 我来答
百度网友062f9c8
2016-06-29 · TA获得超过1254个赞
知道小有建树答主
回答量:840
采纳率:60%
帮助的人:717万
展开全部
1 注入
@Autowired
private HttpServletRequest request;
2 请求方法中直接获取
@RequestMapping("/xx")
public String listui(HttpServletRequest request){
return "/xx";
}

3、直接写个方法给你吧
/**
* 获取当前Request对象.
*
* @return 当前Request对象 可能为null
* @throws IllegalStateException 当前线程不是web请求抛出此异常.
*/
protected HttpServletRequest currentRequest() throws IllegalStateException {
ServletRequestAttributes attrs = (ServletRequestAttributes) RequestContextHolder.getRequestAttributes();
if (attrs == null) {
throw new IllegalStateException("当前线程中不存在 Request 上下文");
}
return attrs.getRequest();
}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式