速度中的会话范围
我如何在 VELOCITY 中使用会话范围(在视图部分中我使用这样的sample.vm)。
我的要求是当我登录页面时,我想存储用户名和信息。会话中的一些详细信息,如果我按注销,我想清除该会话中的所有信息。
How can I use session scope in VELOCITY (in view part am using sample.vm like that).
My requirement is when I login into a page, I want to store the user's name & some details in session and if I press logout I want to clear all the information in that session.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当以速度渲染模板时,您必须传递一个上下文,它基本上是一个哈希图。
因此,在渲染模板之前,您可以将会话中的内容复制到上下文中。
当您按注销时,按照标准做法简单地销毁会话对象。通常,您不需要为速度做任何特殊的事情。
嗯,这是在您从 servlet 中显式调用速度的情况。如果您使用框架,它会在幕后执行很多操作,但即使在这种情况下,只需处理 Session 就可以解决问题。
When rendering a template with velocity you have to pass a Context which is basically a hash map.
So you copy the stuff from the Session into that Context before rendering the template.
When you press logout, simple destroy the Session object, as per standard practice. Normally you do not need to do anything special for velocity.
Well, this is in the case you call velocity explicitely form a servlet. If you use a framework, it does a lot of this behind the scenes, but even in that case simply disposing the Session will do the trick.