速度中的会话范围

发布于 2024-09-03 18:37:11 字数 117 浏览 3 评论 0原文

我如何在 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 技术交流群。

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

发布评论

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

评论(1

半透明的墙 2024-09-10 18:37:11

当以速度渲染模板时,您必须传递一个上下文,它基本上是一个哈希图。

因此,在渲染模板之前,您可以将会话中的内容复制到上下文中。

当您按注销时,按照标准做法简单地销毁会话对象。通常,您不需要为速度做任何特殊的事情。

嗯,这是在您从 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.

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