session过期返回登录页面跳出frame
Posted 小石头
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了session过期返回登录页面跳出frame相关的知识,希望对你有一定的参考价值。
session 过期返回登录页面
方法1,
HttpSession session = request.getSession(); String LOGIN_ID = (String) session.getAttribute("LOGIN_ID"); if (null == LOGIN_ID||"".equals(LOGIN_ID)) { java.io.PrintWriter out = response.getWriter(); out.println("<html>"); out.println("<script>"); out.println("window.open (‘"+request.getContextPath()+"/login.jsp‘,‘_top‘)"); out.println("</script>"); out.println("</html>"); return;
方法2.
在login.jsp中加入
<script> if(window.top!==window.self){window.top.location=window.location}; </script>
以上是关于session过期返回登录页面跳出frame的主要内容,如果未能解决你的问题,请参考以下文章
解决session过期跳转到登录页并跳出iframe框架(或者layui弹出层)
shiro session 怎样跳出整个web框架 返回到登录页面