您的位置:首页 > 其它

解决session过期跳转到登陆页面并跳出iframe框架

2014-08-31 17:17 555 查看
版权声明:转载时请以超链接形式标明文章原始出处和作者信息及本声明http://www.blogbus.com/peony07-logs/74217064.html

当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();

  SysUserVOImpl user = (SysUserVOImpl) 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>

则在系统超时想在框架中打开登录页时,则login.jsp自身进行判断后跳出iframe等框架。

  这段时间一直在休息, 很久没写了,写点简单的吧。要开始学习啦!!!
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: