如何在 Spring AOP 上获取 Web 会话
我有一个关于使用 Spring AspectJ 的问题。我想在用户执行某些操作时创建审核日志,并从 Web 会话中获取用户信息来创建审核日志。 任何人都可以提供如何执行此操作的示例吗?
I have a question for using Spring AspectJ. I want to create an audit log when the user does something and get user information from web session to create the audit log.
Can anyone provide examples of how to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Spring MVC 的 DispatcherServlet 将请求存储在线程局部变量中(如果您不使用 Spring MVC,您可以在 web.xml 中声明 RequestContextListener )做同样的事情)。可以通过
RequestContextHolder
:Spring MVC's
DispatcherServlet
stores request in a thread-local variable (if you don't use Spring MVC, you may declareRequestContextListener
inweb.xml
to do the same thing). This variable can be accessed viaRequestContextHolder
: