码迷,mamicode.com
首页 > 编程语言 > 详细

Java-Spring-获取Request,Response对象

时间:2018-03-27 16:49:24      阅读:214      评论:0      收藏:0      [点我收藏+]

标签:pos   stc   div   https   参数   pre   监听器   thold   log   

转载自:https://www.cnblogs.com/bjlhx/p/6639542.html

第一种、参数

@RequestMapping("/test")
@ResponseBody
public void saveTest(HttpServletRequest req, HttpServletResponse resp){  
}

第二种、注解

@Autowired  
private  HttpServletRequest request;  

第三种、上下文获取

1、在web.xml配置监听器

<listener>
      <listener-class>org.springframework.web.context.request.RequestContextListener</listener-class>
</listener>

2、程序使用

HttpServletRequest req = ((ServletRequestAttributes)RequestContextHolder.getRequestAttributes()).getRequest();
HttpServletResponse resp = ((ServletWebRequest)RequestContextHolder.getRequestAttributes()).getResponse();

Java-Spring-获取Request,Response对象

标签:pos   stc   div   https   参数   pre   监听器   thold   log   

原文地址:https://www.cnblogs.com/chancy/p/8657791.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!