在子页面session过期无法跳转到父页面

Posted 精灵lc

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在子页面session过期无法跳转到父页面相关的知识,希望对你有一定的参考价值。

当session过期后可以用过滤器来设置重定向页面

 

public class ActionFilter extends HttpServlet implements Filter {
private FilterConfig filterConfig;
public void init(FilterConfig config) {
this.filterConfig = config;
}
public void doFilter(ServletRequest servletRequest, ServletResponse servletResponse, FilterChain filterChain) throws ServletException, IOException {
HttpServletRequest req = (HttpServletRequest) servletRequest;
servletRequest.setCharacterEncoding("UTF-8");
HttpServletResponse res = (HttpServletResponse) servletResponse;
String url = req.getRequestURI();
User user = (User) req.getSession().getAttribute("SysUser");
if (null == user) {
if (!COMMON.isEmpty(url) && (url.endsWith("newestlogin.jsp") || url.endsWith("UserLoginAction.jsp") || url.endsWith("login.jsp") || url.endsWith("loginAction.do"))) {
filterChain.doFilter(servletRequest, servletResponse);
} else {
req.getRequestDispatcher("/newestlogin.jsp").forward(req, res);
}
} else {
filterChain.doFilter(servletRequest, servletResponse);
}
}

}

 

 

但是这样不能不能跳出iframe等框架。
可以用javascript解决
在你想控制跳转的页面,比如login.jsp中的<head>与</head>之间加入以下代码:

 

 

<script language=”JavaScript”>
if (window != top) {
top.location.href = location.href;

}

</script>

以上是关于在子页面session过期无法跳转到父页面的主要内容,如果未能解决你的问题,请参考以下文章

js页面跳转的问题(跳转到父页面最外层页面本页面)

session过期后给个提示然后跳转到登陆界面

怎么点击确定按钮关闭当前窗口,并返回父页面,并且父页面刷新。

wordpress 如何在子页面中导航上一页和下一页

asp中session超时怎样写,超时后怎样跳转到指定页面?

ASP.NET session 用户长时间无操作,跳转到重新登录页面,具体怎么写,求高手帮忙啊!