java 和 jsp_session expired_redirect
我正在使用 java 和 jsp 进行邮件项目。我想在会话过期时通过某种方式使用 xml r 重定向页面,或者我想在会话过期时停用窗口。
提前致谢。
I am working with java and jsp for mail project. I want to redirect the page with xml r by some way when the session is expired or I want to deactivate the window when session is expired.
thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我理解正确的话,如果会话过期,您希望网络浏览器更改到另一个页面。
有一些方法可以做到这一点:
setTimeout(location.href='/logoff.jsp', 3600)
进行 Javascript 重定向在这两个示例中,会话在 3600 秒后失效。为了确定起见,您应该在会话失效之前稍微重定向浏览器。
If I understood you correct you want the Webbrowser to change to another page, if the session expires.
There are some ways to do this:
setTimeout(location.href='/logoff.jsp', 3600)
<meta http-equiv="refresh" content="3600; url=/loggedoff.jsp">
In both examples, the session invalidates after 3600 seconds. You should redirect the browser slightly before the session invalidates, just to be sure.