`

5个常用的过滤器哦(收藏)

    博客分类:
  • j2ee
阅读更多
一、使浏览器不缓存页面的过滤器    
import javax.servlet.*;   
import javax.servlet.http.HttpServletResponse;   
import java.io.IOException;   
  
/**  
* 用于的使 Browser 不缓存页面的过滤器  
*/  
public class ForceNoCacheFilter implements Filter {   
  
public void doFilter(ServletRequest request, ServletResponse response, FilterChain filterChain) throws IOException,

ServletException   
{   
   ((HttpServletResponse) response).setHeader("Cache-Control","no-cache");   
   ((HttpServletResponse) response).setHeader("Pragma","no-cache");   
   ((HttpServletResponse) response).setDateHeader ("Expires", -1);   
   filterChain.doFilter(request, response);   
}   
  
public void destroy()   
{   
}   
  
     public void init(FilterConfig filterConfig) throws ServletException   
{   
}   
}   
  
二、检测用户是否登陆的过滤器   
  
import javax.servlet.*;   
import javax.servlet.http.HttpServletRequest;   
import javax.servlet.http.HttpServletResponse;   
import javax.servlet.http.HttpSession;   
import java.util.List;   
import java.util.ArrayList;   
import java.util.StringTokenizer;   
import java.io.IOException;   
  
/**  
* 用于检测用户是否登陆的过滤器,如果未登录,则重定向到指的登录页面   


* 配置参数   


* checkSessionKey 需检查的在 Session 中保存的关键字  

* redirectURL 如果用户未登录,则重定向到指定的页面,URL不包括 ContextPath  

* notCheckURLList 不做检查的URL列表,以分号分开,并且 URL 中不包括 ContextPath  

*/  
public class CheckLoginFilter   
implements Filter   
{   
     protected FilterConfig filterConfig = null;   
     private String redirectURL = null;   
     private List notCheckURLList = new ArrayList();   
     private String sessionKey = null;   
  
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(sessionKey) == null)   
   {   
    response.sendRedirect(request.getContextPath() + redirectURL);   
    return;   
   }   
   filterChain.doFilter(servletRequest, servletResponse);   
}   
  
public void destroy()   
{   
   notCheckURLList.clear();   
}   
  
private boolean checkRequestURIIntNotFilterList(HttpServletRequest request)   
{   
   String uri = request.getServletPath() + (request.getPathInfo() == null ? "" : request.getPathInfo());   
   return notCheckURLList.contains(uri);   
}   
  
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)   
   {   
    StringTokenizer st = new StringTokenizer(notCheckURLListStr, ";");   
    notCheckURLList.clear();   
    while(st.hasMoreTokens())   
    {   
     notCheckURLList.add(st.nextToken());   
    }   
   }   
}   
}   
  
三、字符编码的过滤器   
  
import javax.servlet.*;   
import java.io.IOException;   
  
/**  
* 用于设置 HTTP 请求字符编码的过滤器,通过过滤器参数encoding指明使用何种字符编码,用于处理Html Form请求参数的中文问题


*/  
public class CharacterEncodingFilter   
implements Filter   
{   
protected FilterConfig filterConfig = null;   
protected String encoding = "";   
  
public void doFilter(ServletRequest servletRequest, ServletResponse servletResponse, FilterChain filterChain) throws

IOException, ServletException   
{   
         if(encoding != null)   
          servletRequest.setCharacterEncoding(encoding);   
         filterChain.doFilter(servletRequest, servletResponse);   
}   
  
public void destroy()   
{   
   filterConfig = null;   
   encoding = null;   
}   
  
     public void init(FilterConfig filterConfig) throws ServletException   
{   
          this.filterConfig = filterConfig;   
         this.encoding = filterConfig.getInitParameter("encoding");   
  
}   
}   
  
四、资源保护过滤器   
  
  
package catalog.view.util;   
  
import javax.servlet.Filter;   
import javax.servlet.FilterConfig;   
import javax.servlet.ServletRequest;   
import javax.servlet.ServletResponse;   
import javax.servlet.FilterChain;   
import javax.servlet.ServletException;   
import javax.servlet.http.HttpServletRequest;   
import java.io.IOException;   
import java.util.Iterator;   
import java.util.Set;   
import java.util.HashSet;   
//   
import org.apache.commons.logging.Log;   
import org.apache.commons.logging.LogFactory;   
  
/**  
* This Filter class handle the security of the application.  
*   
* It should be configured inside the web.xml.  
*   
* @author Derek Y. Shen  
*/  
public class SecurityFilter implements Filter {   
//the login page uri   
private static final String LOGIN_PAGE_URI = "login.jsf";   
    
//the logger object   
private Log logger = LogFactory.getLog(this.getClass());   
    
//a set of restricted resources   
private Set restrictedResources;   
    
/**  
* Initializes the Filter.  
*/  
public void init(FilterConfig filterConfig) throws ServletException {   
this.restrictedResources = new HashSet();   
this.restrictedResources.add("/createProduct.jsf");   
this.restrictedResources.add("/editProduct.jsf");   
this.restrictedResources.add("/productList.jsf");   
}   
    
/**  
* Standard doFilter object.  
*/  
public void doFilter(ServletRequest req, ServletResponse res, FilterChain chain)   
   throws IOException, ServletException {   
this.logger.debug("doFilter");   
     
String contextPath = ((HttpServletRequest)req).getContextPath();   
String requestUri = ((HttpServletRequest)req).getRequestURI();   
     
this.logger.debug("contextPath = " + contextPath);   
this.logger.debug("requestUri = " + requestUri);   
     
if (this.contains(requestUri, contextPath) && !this.authorize((HttpServletRequest)req)) {   
   this.logger.debug("authorization failed");   
   ((HttpServletRequest)req).getRequestDispatcher(LOGIN_PAGE_URI).forward(req, res);   
}   
else {   
   this.logger.debug("authorization succeeded");   
   chain.doFilter(req, res);   
}   
}   
    
public void destroy() {}    
    
private boolean contains(String value, String contextPath) {   
Iterator ite = this.restrictedResources.iterator();   
     
while (ite.hasNext()) {   
   String restrictedResource = (String)ite.next();   
      
   if ((contextPath + restrictedResource).equalsIgnoreCase(value)) {   
    return true;   
   }   
}   
     
return false;   
}   
    
private boolean authorize(HttpServletRequest req) {   
  
              //处理用户登录   
       /* UserBean user = (UserBean)req.getSession().getAttribute(BeanNames.USER_BEAN);  
    
if (user != null && user.getLoggedIn()) {  
   //user logged in  
   return true;  
}  
else {  
   return false;  
}*/  
}   
}  
五 利用Filter限制用户浏览权限

在一个系统中通常有多个权限的用户。不同权限用户的可以浏览不同的页面。使用Filter进行判断不仅省下了代码量,而且如果要更

改的话只需要在Filter文件里动下就可以。
以下是Filter文件代码:

import java.io.IOException;   
  
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;   
  
public class RightFilter implements Filter {   
  
    public void destroy() {   
           
    }   
  
    public void doFilter(ServletRequest sreq, ServletResponse sres, FilterChain arg2) throws IOException,

ServletException {   
        // 获取uri地址   
        HttpServletRequest request=(HttpServletRequest)sreq;   
        String uri = request.getRequestURI();   
        String ctx=request.getContextPath();   
        uri = uri.substring(ctx.length());   
        //判断admin级别网页的浏览权限   
        if(uri.startsWith("/admin")) {   
            if(request.getSession().getAttribute("admin")==null) {   
                request.setAttribute("message","您没有这个权限");   
                request.getRequestDispatcher("/login.jsp").forward(sreq,sres);   
                return;   
            }   
        }   
        //判断manage级别网页的浏览权限   
        if(uri.startsWith("/manage")) {   
            //这里省去   
            }   
        }   
        //下面还可以添加其他的用户权限,省去。   
  
    }   
  
    public void init(FilterConfig arg0) throws ServletException {   
           
    }   
  
}  
<!-- 判断页面的访问权限 -->  
<filter>  
     <filter-name>RightFilter</filter-name>  
      <filter-class>cn.itkui.filter.RightFilter</filter-class>  
</filter>  
<filter-mapping>  
      <filter-name>RightFilter</filter-name>  
      <url-pattern>/admin/*</url-pattern>  
</filter-mapping>  
<filter-mapping>  
      <filter-name>RightFilter</filter-name>  
      <url-pattern>/manage/*</url-pattern>  
</filter-mapping>  

在web.xml中加入Filter的配置,如下:
<filter>  
        <filter-name>EncodingAndCacheflush</filter-name>  
        <filter-class>EncodingAndCacheflush</filter-class>  
        <init-param>  
            <param-name>encoding</param-name>  
            <param-value>UTF-8</param-value>  
        </init-param>  
    </filter>  
    <filter-mapping>  
        <filter-name>EncodingAndCacheflush</filter-name>  
        <url-pattern>/*</url-pattern>  
    </filter-mapping>  
要传递参数的时候最好使用form进行传参,如果使用链接的话当中文字符的时候过滤器转码是不会起作用的,还有就是页面上

form的method也要设置为post,不然过滤器也起不了作用。
分享到:
评论

相关推荐

    Jira使用技巧

    2 过滤器 4 2.1 查询界面。 5 2.2 查询条件。 6 2.2.1. 简单模式的查询 6 2.2.2. 高级模式的查询 8 2.2.3. 列表模式和详情模式 9 2.3 查询条件说明 10 2.3.1. 操作符 10 2.3.2. 原生态字段 11 2.3.3. 常用方法 13 ...

    12个Firefox火狐浏览器技巧.docx

    11. 为您的 Firefox 提速:输入 about:config, 在过滤器中输入 browser.cache,然后选中 browser.cache.disk.capacity。如果您有 512M 或 1G 内存,设置其值为 15000。同时,您也可以将 Firefox 设置为最小化时减少...

    Hibernate注释大全收藏

    (5) 该列是否作为生成 update语句的一个列 String columnDefinition() default ""; (6) 默认值 String table() default ""; (7) 定义对应的表(deault 是主表) int length() default 255; (8) 列长度 int ...

    书包行--U盘伴侣3.2.4

    5、RSS阅读器:可以订阅“博客日志”、“新闻”和“技术文章”,多线程快速更新频道、支持OPML格式的导入与导出、支持记录的收藏与搜索。 6、音乐盒:可管理大量的音乐列表,支持各种格式音乐的连续播放。单独设计...

    书包行--U盘伴侣3.2.2

    5、RSS阅读器:可以订阅“博客日志”、“新闻”和“技术文章”,多线程快速更新频道、支持OPML格式的导入与导出、支持记录的收藏与搜索。 6、音乐盒:可管理大量的音乐列表,支持各种格式音乐的连续播放。单独设计...

    傲游浏览器3(Maxthon) 3.1.8.1000 正式版

    自动订阅常用网站过滤规则及全局规则 大幅优化了浏览器的性能与稳定性 傲游浏览器3.0.24.1000 正式版 在菜单&gt;&gt;视图&gt;&gt;自定义界面中加入"工具按钮"项目 在多重搜索中加入比价搜索 加入快递查询功能 现在点击"打开", ...

    江西电大2018秋-计算机应用基础.doc

    电大2018秋-计算机应用基础 计算机应用基础 任务01 试卷总分:100 01任务 单选题(共20题,共100分) 开始说明: 结束说明: 1.(5分) Excel工作表中,用鼠标器左键单击某个工作表标签,该标签为白色显示,此工作表称为 ...

    ESM_ArcSight控制台用户指南(中文翻译版—Zephyr)_6.11.0 .pdf

    重写数据监视器的最后一个状态 221 管理数据监视器组 221 优化数据监视器事件筛选的评估 223 需求 223 自动优化过滤条件 224 追踪优化 224 禁用优化功能 225 使用图表 226 绘制活动频道的内容 226 绘制数据监视器的...

    jQuery权威指南366页完整版pdf和源码打包

    jquery 选择器/12 2.1 jquery选择器概述/13 2.1.1 什么是选择器/13 2.1.2 选择器的优势/13 2.2 jquery选择器详解/17 2.2.1 基本选择器/18 2.2.2 层次选择器/20 2.2.3 简单过滤选择器 2.2.4 内容过滤...

    CuteFTP9简易汉化版

    自定义Commands-Create组常用的命令序列并将它们分配给一个快速访问的快捷键。如果需要,将直接FTP命令发送到FTP服务器使用原始的FTP命令功能的FTP会话更细粒度的控制。 文件Properties-View或更改权限(CHMOD)多个...

    SQLyog Ultimate v11.21(X86/X64位)多语言注册版(Key)

    SQLyog MySQL GUI是我常用的一个桌面工具,功能强大,方便! 该软件主要包含以下功能: 1、快速备份和恢复数据; 2、以GRID / TEXT 格式显示结果; 3、支持客户端挑选、过滤数据; 4、批量执行很大的SQL脚本文件...

    通讯和互联网实用技巧

    1. Internet Explorer 7:总是用选项卡打开网页 2. Internet Explorer/Firefox:快速查找...34. Firefox 1.X/2.X/3.X:优化Adblock Plus过滤规则以加速过滤速度 35. Outlook XP/2003/2007:在Outlook中发送网站页面

    网络安全加固.doc

    发表时间:2009-4-29 童永清 余望 来源:万方数据 关键字:网络安全 加固 技术 信息化调查找茬投稿收藏评论好文推荐打印社区分享 各种安全防范措施就好比是一块块木板,这些木板集成在一起构成一个木桶,这个木桶 中...

    桌面数据库-x86v2012.05.003

    5、文本编辑器更新。 ---------------------------------- 简介 《桌面数据库》不是一款单纯的软件,而是一个高效的数据管理与表格制作平台,功能强劲,适用范围广,各行业均可使用。 1、自由创建、修改表:有...

    Java开源的下一代社区平台Symphony.zip

    是否公开关注用户/标签/粉丝、收藏帖子、积分列表 是否公开在线状态 是否公开 UA 信息 是否公开地理位置 是否参与财富/消费排行 另外,用户还可以完整导出数据,包括帖子和回帖。 编辑历史与匿名发布 ...

    Visual C++编程技巧精选500例.pdf

    033 如何设置文件对话框过滤器? 034 如何设置文件对话框多重选择功能? 035 如何设置文件对话框打开时的目录位置? 036 如何从文件对话框中选择文件夹? 037 如何从文件对话框中新建文件夹? 038 如何在文件对话框中预览...

    Shop7z网上购物系统旗舰版 商城网站源码

    Shop7z网上购物系统旗舰版除了可以设定某个分类在首页展示之外,还可以对在首页展示的分类设置扩充广告位,每个分类支持设置最多5个广告图片,即分类越多广告位越多,分类右侧同时会显示本类别下的10个小类,这样...

    HDWiki百科源码 v4.0.3UTF8

    这些功能为WIKI必须具备的基础功能,更多建站常用的功能可以通过安装插件实现。 百科功能:为WIKI百科网站必备的功能,包括百科词条浏览、百科编辑器、版本管理、词条管理、分类管理、统计、搜索功能,版本对比,...

Global site tag (gtag.js) - Google Analytics