request.RequestContextListener

因爲是使用spring mvc來作項目,所以脫離了HttpServletRequest做爲參數,不可以直接使用request,要想使用request能夠使用下面的方法:html

在web點xml中配置一個監聽java

 

[html]  view plain copy print ?
  1. <listener>  
  2.         <listener-class>  
  3.             org.springframework.web.context.request.RequestContextListener  
  4.         </listener-class>  
  5. </listener>  

以後就能夠在程序使用了web

 

  1. HttpServletRequest request = ((ServletRequestAttributes)RequestContextHolder.getRequestAttributes()).getRequest()
相關文章
相關標籤/搜索
本站公眾號
   歡迎關注本站公眾號,獲取更多信息