一.攔截器與過濾器的區別: 1.filter基於回調函數,我們需要實現的filter介面中doFilter方法就是回調函數,而interceptor則基於Java本身的反射機制,這是兩者最本質的區別。 2.filter是依賴於servlet容器的,即只能在servlet容器中執行,很顯然沒有serv ...
一.攔截器與過濾器的區別:
1.filter基於回調函數,我們需要實現的filter介面中doFilter方法就是回調函數,而interceptor則基於Java本身的反射機制,這是兩者最本質的區別。
2.filter是依賴於servlet容器的,即只能在servlet容器中執行,很顯然沒有servlet容器就無法來回調doFilter方法。而interceptor與servlet容器無關。
3.Filter的過濾範圍比Interceptor大,Filter除了過濾請求外通過通配符可以保護頁面,圖片,文件等等,而Interceptor只能過濾請求。
4.Filter的過濾例外一般是在載入的時候在init方法聲明,而Interceptor可以通過在xml聲明是guest請求還是user請求來辨別是否過濾。
二.應用
filter:常用於系統許可權管理(即用戶訪問某些頁面之前,進行Filter許可權檢查);
Interceptor:只是在程式訪問Action之前進行攔截。常用於記錄系統操作日誌,或添加額外功能。
felter的三個實例:
1)
在web.xml中的配置:
<filter>
<filter-name>encoding</filter-name>
<filter-class>
org.lxh.myzngt.filter.EncodingFilter
</filter-class>
<init-param>
<param-name>charset</param-name>
<param-value>gbk</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>encoding</filter-name>
<url-pattern>
private String[] doNotFilterURL; ?public void init(FilterConfig filterConfig) throws ServletException {
String params = filterConfig.getInitParameter("doNotFilterURL");
if (params != null) {
String urls[] = params.split(",");
doNotFilterURL = new String[urls.length];
for (int i = 0, size = urls.length; i < size; i++) {
doNotFilterURL[i] = urls[i];
}
}
}
HttpServletRequest req = (HttpServletRequest) request;
String requestPath = req.getRequestURI(); //如:demo/login.action
String contextRoot = req.getContextPath(); //如:demo int length = contextRoot.length();
String path = requestPath.substring(length); //如:/login.action
if (path != null && path.length() != 0) {
path = path.trim();
}
if (Constants.FIRST_LOGIN_URL.getStringValue().equals(path)) {
return true;
}
//獲取請求的地址,比對不需要過濾的URL的數組doNotFilterURL。
boolean doNotFilter = false;
if (doNotFilterURL != null) {
for (String url : doNotFilterURL) { if (url != null && path.contains(url.trim())) {
doNotFilter = true;
break;
}
}
} //對不屬於不用過濾的,查詢數據表,看用戶是否有權訪問。若沒,則返回提示用戶無限訪問頁面。若有,則直接通過。 }