我想自己处理请求和会话属性,而不是将其留给spring @SessionAttributes
(例如,登录cookie处理)。
我只是无法弄清楚如何HttpRequest
从控制器内部访问,我需要一种方法来访问之上@RequestAttribute
并访问HttpRequest
自身。使用Stripes可以通过实现an ApplicationContext
并调用来完成此操作getAttribute()
。
另外,传递HttpServletRequest
as参数似乎不起作用:
@RequestMapping(value="/") public String home(HttpServletRequest request){
System.out.println(""+request.getSession().getCreationTime());
return "home";
}
上面的方法不打印任何内容。
您对此有什么建议吗?