<% Object userSession = request.getSession().getAttribute(_java 画面跳转时没有进入filter过滤器">
当前位置:   article > 正文

Javaweb-Filter和JSP实现页面跳转_java 画面跳转时没有进入filter过滤器

java 画面跳转时没有进入filter过滤器



1.对成功登录的页面进行判断,是否有session


<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>Title</title>
</head>
<body>

<%
    Object userSession = request.getSession().getAttribute("USER_SESSION");
    if(userSession==null){
        response.sendRedirect("/login.jsp");
    }
%>


<h1>主页</h1>

<p><a href="/servlet/logout">注销</a></p>

</body>
</html>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21

成功跳转!


2.用Filter进行过滤(判断是否有session):
import javax.servlet.*;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.net.http.HttpRequest;

public class sysFilter implements Filter {
    @Override
    public void init(FilterConfig filterConfig) throws ServletException {

    }

    @Override
    public void doFilter(ServletRequest req, ServletResponse resp, FilterChain chain) throws IOException, ServletException {

        HttpServletRequest request = (HttpServletRequest) req;
        HttpServletResponse response = (HttpServletResponse) resp;

        if(request.getSession().getAttribute("USER_SESSION")==null){
            response.sendRedirect("/error.jsp");
        }

        chain.doFilter(req,resp);
    }

    @Override
    public void destroy() {

    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30


运行程序,结果如下

这个
报500错误,同时指出了可能出现问题的代码

推测:Filter和success的jsp代码同时出现了页面跳转,可能冲突,因此将jsp里面的跳转代码注释掉,重新运行程序。


在这里插入图片描述


页面跳转成功!


结论:不能在Filter和 jsp代码里同时编写页面跳转的代码,通常把jsp里面的代码注释掉就可以了。








至此,本文结束。记录自己的知识盲区~

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/代码优化者/article/detail/61369
推荐阅读
相关标签
  

闽ICP备14008679号