JSF“记住我”选项
在其他语言中,当用户登录时,您可以将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您还可以使用 JSF 添加 cookie:
在参数映射中,您可以设置到期日期 - 请参阅 所有参数的文档
You can add cookies with JSF as well:
in the parameters map you can set the expiration date - see the documentation for all parameteres
我知道这是标记为 JSF 但我建议您查看 Spring 针对 Remember Me 问题的解决方案。
I know this is tagged JSF but I recommend you look into Spring's Solution to the Remember Me problem.