SpringMVC怎么注入HttpServletResponse

 我来答
百度网友062f9c8
2016-08-16 · TA获得超过1254个赞
知道小有建树答主
回答量:840
采纳率:60%
帮助的人:727万
展开全部
这个问题我都回答多次了:

1 注入方式
@Autowired
private HttpServletRespnose respnose;
----------------------------------------

其他的方式:

2 请求方法中直接获取
@RequestMapping("/xx")
public String listui(HttpServletRespnose respnose){
return "/xx";
}

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

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式