码迷,mamicode.com
首页 > 其他好文 > 详细

J2EE作业_拦截器

时间:2018-03-26 10:55:07      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:login   pos   跳转   pre   direct   pes   equal   attribute   path   

 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作业_拦截器

标签:login   pos   跳转   pre   direct   pes   equal   attribute   path   

原文地址:https://www.cnblogs.com/ouhaitao/p/8649011.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!