JSF“记住我”选项

发布于 2024-10-17 15:50:04 字数 121 浏览 0 评论 0原文

在其他语言中,当用户登录时,您可以将 cookie 的过期日期设置为与今天相差甚远,并且您可以实现此目的。我如何在 JSF2 中实现这个?我有一个 jsf sessionscoped bean,但是如何才能长时间维持这个会话呢?

In other languages when a user logs in you can set the expire date of a cookie really far from today's and you can achieve this. How can I implement this in JSF2? I have a jsf sessionscoped bean but how can I maintain this session for a long time?.

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

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

发布评论

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

评论(2

旧城空念 2024-10-24 15:50:05

您还可以使用 JSF 添加 cookie:

FacesContext.getCurrentInstance().getExternalContext.addResponseCookie(..)

在参数映射中,您可以设置到期日期 - 请参阅 所有参数的文档

You can add cookies with JSF as well:

FacesContext.getCurrentInstance().getExternalContext.addResponseCookie(..)

in the parameters map you can set the expiration date - see the documentation for all parameteres

请爱~陌生人 2024-10-24 15:50:05

我知道这是标记为 JSF 但我建议您查看 Spring 针对 Remember Me 问题的解决方案。

I know this is tagged JSF but I recommend you look into Spring's Solution to the Remember Me problem.

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