Spring MVC 中如何存储会话

发布于 2024-08-03 10:38:47 字数 162 浏览 3 评论 0原文

在 Spring MVC (2.5) Web 应用程序中存储用户会话相关数据(例如用户最近执行的操作的日志)的最佳方式是什么?

使用经典的 javax.servlet.http.HttpSession 或通过在控制器 bean 中指定 range="session" 并将数据存储在会话对象中?

What's the best way of storing session related data of a user (like, for example a log of recent actions a user has done) in a Spring MVC (2.5) web application ?

Using the classic javax.servlet.http.HttpSession or by specifying scope="session" in controller beans, and storing the data in a session object ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

颜漓半夏 2024-08-10 10:38:47

会话范围的 bean(使用 scope="session")是最干净的方法。这消除了您自己与会话交互的需要。

如果要将会话范围的 bean 自动连接到控制器中,则需要将控制器本身设置为会话范围,或者使用范围代理将其连接到单例控制器中,如 此处描述。任何一种方法都是有效的。

Session-scoped beans (using scope="session") is the cleanest approach. This removes the need to interact with the session yourself.

If you want to autowire a session-scoped bean in to the controller, you either need to make the controller session-scoped itself, or use a scoped-proxy to wire it into a singleton controller, as described here. Either approach is valid.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文