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

解决session过期跳转到登陆页面并跳出iframe框架 - [小知识记录]

2010-09-02

版权声明:转载时请以超链接形式标明文章原始出处和作者信息及本声明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等框架。

  这段时间一直在休息, 很久没写了,写点简单的吧。要开始学习啦!!!

  • 1
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值