1. 程式人生 > >實現Struts2中對未登入的jsp頁面進行攔截功能(採用的是Struts2中過濾器進行過濾攔截)

實現Struts2中對未登入的jsp頁面進行攔截功能(採用的是Struts2中過濾器進行過濾攔截)

Struts2中攔截器大家都很經常使用,但是攔截器只能攔截action不能攔截jsp頁面。這個時候就有點尷尬了,按道理來說沒登入的使用者只能看login介面不能夠通過輸入URL進行介面跳轉,這顯然是不合理的。這裡介紹Struts2中Filter實現jsp頁面攔截的功能。(有興趣的人可以去研究Filter過濾器的其它用法,因為利用過濾器也可以實現action攔截的功能)

下面直接上程式碼,邊看邊分析實現步驟和原理。

1.web.xml中的配置資訊:

	<filter>  
    <filter-name>SessionInvalidate</filter-name>  
    <filter-class>com.tp.action.SessionCheckFilter</filter-class>  //過濾器核心類的class地址
    <init-param>  
      <param-name>checkSessionKey</param-name>  //session中需要檢查的key
      <param-value>users</param-value>  
    </init-param>  
    <init-param>  
      <param-name>redirectURL</param-name>  //過濾重定向的地址
      <param-value>/login.jsp</param-value>  
    </init-param>  
    <init-param>  
      <param-name>notCheckURLList</param-name>  //不需要過濾的jsp
      <param-value>/login.jsp</param-value>  
    </init-param>  
  </filter>  
  
  <filter-mapping>  
    <filter-name>SessionInvalidate</filter-name>  //需要過濾的檔案
    <url-pattern>*.jsp</url-pattern>  
  </filter-mapping>  
	

這裡有幾點需要注意的是:

1.過濾器要儘量放在Struts2配置程式碼的上面。

2.在SessionInvalidate中 <url-pattern>*.jsp</url-pattern>  配置非常重要。*.jsp表示只過濾jsp的介面不會把css,js,action一起給過濾了。如果寫成/*就會把所有的東西一起過濾了。包括css,js,action等。所以這個地方一定要看仔細。

2。SessionCheckFilter過濾的核心類:

package com.tp.action;
import java.io.IOException;  
import java.util.HashSet;  
import java.util.Set;  
import javax.servlet.Filter;  
import javax.servlet.FilterChain;  
import javax.servlet.FilterConfig;  
import javax.servlet.ServletException;  
import javax.servlet.ServletRequest;  
import javax.servlet.ServletResponse;  
import javax.servlet.http.HttpServletRequest;  
import javax.servlet.http.HttpServletResponse;  
import javax.servlet.http.HttpSession;  
/** 
 * 用於檢測使用者是否登陸的過濾器,如果未登入,則重定向到指的登入頁面 配置引數 checkSessionKey 需檢查的在 Session 中儲存的關鍵字 
 * redirectURL 如果使用者未登入,則重定向到指定的頁面,URL不包括 ContextPath notCheckURLList 
 * 不做檢查的URL列表,以分號分開,並且 URL 中不包括 ContextPath 
 */  
public class SessionCheckFilter implements Filter {  
  protected FilterConfig filterConfig = null;  
  private String redirectURL = null;  
  private Set<String> notCheckURLList = new HashSet<String>();  
  private String sessionKey = null;  
  @Override  
  public void destroy() {  
    notCheckURLList.clear();  
  }  
  @Override  
  public void doFilter(ServletRequest servletRequest,  
      ServletResponse servletResponse, FilterChain filterChain)  
      throws IOException, ServletException {  
    HttpServletRequest request = (HttpServletRequest) servletRequest;  
    HttpServletResponse response = (HttpServletResponse) servletResponse;  
    HttpSession session = request.getSession();  
    if (sessionKey == null) {  
      filterChain.doFilter(request, response);  
      return;  
    }  
    if ((!checkRequestURIIntNotFilterList(request))  
        && session.getAttribute("users") == null) {  
         response.sendRedirect(request.getContextPath() + redirectURL);  
      return;  
    }  
    filterChain.doFilter(servletRequest, servletResponse);  
  }  
  private boolean checkRequestURIIntNotFilterList(HttpServletRequest request) {  
    String uri = request.getServletPath()  
        + (request.getPathInfo() == null ? "" : request.getPathInfo());  
    String temp = request.getRequestURI();
    temp = temp.substring(request.getContextPath().length() + 1);  
    // System.out.println("是否包括:"+uri+";"+notCheckURLList+"=="+notCheckURLList.contains(uri));  
    return notCheckURLList.contains(uri);  
  }  
  @Override  
  public void init(FilterConfig filterConfig) throws ServletException {  
    this.filterConfig = filterConfig;  
    redirectURL = filterConfig.getInitParameter("redirectURL");  
    sessionKey = filterConfig.getInitParameter("checkSessionKey");  
    String notCheckURLListStr = filterConfig  
        .getInitParameter("notCheckURLList");  
    if (notCheckURLListStr != null) {  
      System.out.println(notCheckURLListStr);  
      String[] params = notCheckURLListStr.split(",");  
      for (int i = 0; i < params.length; i++) {  
        notCheckURLList.add(params[i].trim());  
      }  
    }  
  }  
}  
到這裡過濾器的功能就實現了。再重申一下web.xml中配置的資訊,需要好好檢查檢查因為那裡是過濾器是否成功的關鍵。
如果有什麼不清楚或者有啥疑問意見可以加我QQ/微信  208017534 ,歡迎一起交流一起進步。