SpringMVC怎么注入HttpServletResponse
1个回答
展开全部
这个问题我都回答多次了:
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();
}
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();
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询