赞
踩
第一种,最简单的方式,使用注解:
@Autowired
private HttpServletRequest request;
第二种,web.xml中配置一个监听器。
<listener>
<listener-class>
org.springframework.web.context.request.RequestContextListener
</listener-class>
</listener>
程序中使用:
HttpServletRequest request = ((ServletRequestAttributes)RequestContextHolder.getRequestAttributes()).getRequest();
第三种,作为请求参数传进来。
public String hello(HttpServletRequest request,HttpServletResponse response)
如果使用struts2,可以使用:
HttpServletRequest request = ServletActionContext.getRequest();
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。