J2EE作业_拦截器

Posted ouhaitao

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了J2EE作业_拦截器相关的知识,希望对你有一定的参考价值。

 1 @WebFilter(dispatcherTypes = {DispatcherType.REQUEST }
 2                     , urlPatterns = { "/*" })
 3 public class Filter1 implements Filter {
 4 
 5     public Filter1() {
 6     }
 7 
 8     public void destroy() {
 9     }
10 
11     public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {
12         
13         HttpSession session=((HttpServletRequest)request).getSession();
14         boolean isAllowed=true;
15         if(session.getAttribute("user")==null){
16             if(!((HttpServletRequest)request).getServletPath().equals("/login.jsp"))
17                 isAllowed=false;
18         }
19         if(isAllowed)
20             chain.doFilter(request, response);
21         else
22             ((HttpServletResponse)response).sendRedirect("login.jsp");
23         
24     }
25 
26     public void init(FilterConfig fConfig) throws ServletException {
27     }
28 
29 }

当用户访问所有资源时,如果用户未登录,就跳转回登录页面.

以上是关于J2EE作业_拦截器的主要内容,如果未能解决你的问题,请参考以下文章

j2ee之struts2拦截器()

第二周作业

J2EE 第四周作业

OkHttpInterceptor 从 kotlin 拦截器导航到登录片段

J2EE 第五周作业

J2EE关于struts2自动填充参数的理解