Spring MVC 中如何存储会话
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
会话范围的 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.