• 在子页面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>

  • 相关阅读:
    django中ckeditor富文本编辑器使用
    xadmin安装
    RabbitMQ应用示例
    windows下安装RabbitMQ
    第四章 面向对象
    第三章 模块
    git简单使用
    python中的装饰器
    Python 使用 argparse 开发命令行工具/获取命令行参数/子命令实现
    自动化运维工具 Ansible 安装、配置及使用
  • 原文地址:https://www.cnblogs.com/lc93/p/8316971.html
Copyright © 2020-2023  润新知