因爲是使用spring mvc來作項目,所以脫離了HttpServletRequest做爲參數,不可以直接使用request,要想使用request能夠使用下面的方法:html
在web點xml中配置一個監聽java
- <listener>
- <listener-class>
- org.springframework.web.context.request.RequestContextListener
- </listener-class>
- </listener>
以後就能夠在程序使用了web
- HttpServletRequest request = ((ServletRequestAttributes)RequestContextHolder.getRequestAttributes()).getRequest()