如何使用 Spring 将 HttpSession 放入 Aspect 类中?
Posted
技术标签:
【中文标题】如何使用 Spring 将 HttpSession 放入 Aspect 类中?【英文标题】:How to put the HttpSession into an Aspect class using Spring? 【发布时间】:2012-01-18 15:42:31 【问题描述】:我有一个用于记录应用程序的方面类,我需要用户会话中的信息。有没有办法为方面或其属性提供 HttpSession?
感谢您的帮助。
【问题讨论】:
【参考方案1】:如果您将 HttpSession 作为参数传递,建议可以使用它:
@Before("args(httpSession,..)")
public void logHttpSession(HttpSession httpSession)
...
【讨论】:
【参考方案2】:如果您使用的是 Sring MVC,则信息存储在 RequestContextHolder 中,为了安全,您在 SecurityContext 中有信息。请查看 here 了解更多信息。
【讨论】:
以上是关于如何使用 Spring 将 HttpSession 放入 Aspect 类中?的主要内容,如果未能解决你的问题,请参考以下文章
如何获取序列化的tomcat HttpSession以重新填充spring SessionRegistry
在spring中获取websocket会话的关联HTTPSession
在 Spring Security 中检查现有的 HttpSession
没有 HttpSession 的 Spring Security 记住我服务
Spring MVC - HttpSession.setAttribute 和 model.addObject 之间的区别