`
flm_llx
  • 浏览: 62522 次
  • 性别: Icon_minigender_1
  • 来自: 应县
社区版块
存档分类
最新评论

引用 五个有用的过滤器 Filter

    博客分类:
  • java
阅读更多
引用
xyz 的 五个有用的过滤器 Filter
来源:http://blogger.org.cn/blog
一、使浏览器不缓存页面的过滤器    
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,不然过滤器也起不了作用。
分享到:
评论

相关推荐

    过滤器filter

    2. **filter-name元素**:给过滤器起个名字,便于引用。 3. **filter-class元素**:指定过滤器的全限定类名。 4. **init-param元素**:配置过滤器的初始化参数。 5. **filter-mapping元素**:映射过滤器,指定哪些...

    Zend Framework过滤器Zend_Filter用法详解

    - 确认引用过滤器类文件的路径是正确的。 - 对于某些特定的过滤器,可能需要开启PHP的某些扩展,比如在使用字符串大小写转换时,就需要确保mbstring扩展已经被启用。 - 在实际应用中,可能需要根据数据的来源和用途...

    Angularjs之filter过滤器(推荐)

    AngularJS的filter过滤器是其核心特性之一,用于在数据绑定时对数据进行转换和处理。在AngularJS应用中,filter常被用来格式化数据、筛选数据或改变数据的显示方式,极大地提高了代码的可读性和用户体验。下面将详细...

    2021-05-28-WebAPI高级应用三--过滤器Filter.rar

    1. "WebAPI高级应用三--过滤器Filter.md" 这个Markdown文件很可能包含了关于Web API过滤器的详细教程,包括定义、分类、使用场景、如何创建自定义过滤器以及如何在Web API配置中应用它们。 2. "YDT.Project....

    管道过滤器

    过滤器通常包含一个内部引用到下一个过滤器或最终目的地,以便在处理完数据后将其传递下去。通过这种方式,过滤器可以被串联起来,形成一个处理流水线。 在实际应用中,管道过滤器模式在文本处理、网络通信、日志...

    web过滤器 c#

    要使用这个开源过滤器,首先需要将其添加到你的项目引用中。然后,你可以创建自定义过滤器类,继承自相应的基类(如`FilterAttribute`),并覆盖所需的方法。在控制器或全局过滤配置中注册这个过滤器,以便在适当的...

    java_过滤器详解

    - `&lt;filter-name&gt;`:引用已在`&lt;filter&gt;`中定义的过滤器名称。 - `&lt;url-pattern&gt;`:可指定一个或多个URL模式,用于匹配需要过滤的资源。例如,“/login.jsp”将仅匹配指定的JSP文件;“/*.jsp”则匹配所有扩展名为....

    struts过滤器(拦截器)程序.zip

    在Struts2中,过滤器(Filter)和拦截器(Interceptor)是实现业务逻辑控制和增强功能的重要机制。下面将详细阐述这两个概念以及它们在实际项目中的应用。 首先,过滤器在Servlet容器中扮演着预处理请求和后处理...

    过滤器和拦截器区别区别

    过滤器和拦截器是两个常见的概念在 Java Web 开发中,它们都可以用来对请求进行处理和过滤,但是它们之间有着本质的区别。 首先,从机制上来说,拦截器是基于 Java 的反射机制的,而过滤器是基于函数回调。拦截器...

    endnote x4 中国知网中国知网过滤器和万方数据库的endnote导入

    这个过程通常包括找到过滤器文件(可能在压缩包中的“endnote filter”),然后在EndNote的“首选项”设置中添加并选择该过滤器。这样,当你从中国知网导出文献时,可以使用这个过滤器将数据转换为EndNote可以理解的...

    javaweb过滤器

    - 也可以通过`&lt;filter&gt;`和`&lt;filter-mapping&gt;`元素来配置多个过滤器的执行顺序。 #### 过滤器的简单案例 1. **解决POST请求参数和响应输出的中文乱码问题**: - 在`doFilter`方法中设置请求和响应的字符编码为UTF...

    dubbox增加过滤器功能(附代码)

    其中 `myFilter` 是过滤器的引用名,可以是类名或者 Spring 容器中的 Bean ID。 3. **启动服务**: 启动 Dubbox 服务提供者,系统会自动加载配置的过滤器,并按照指定顺序执行。 4. **测试过滤器**: 调用服务...

    过滤器处理中文

    在给出的代码中,`xiaogu.EncodingFilter`是一个实现了`javax.servlet.Filter`接口的自定义过滤器,专门用于解决中文乱码问题。 过滤器的主要作用是在请求到达目标Servlet或JSP之前以及响应离开Servlet容器返回给...

    vue的过滤器filter实例详解

    这种过滤器对于处理新闻摘要、搜索结果等场景非常有用。 在代码中,过滤器通过 `Vue.filter` 方法定义。这个方法接受两个参数:过滤器名称和过滤器函数。过滤器函数有三个参数,第一个是需要被格式化的值(在这个...

    cuckoo-filter:布谷鸟过滤器去工具。 config by you布谷鸟过滤器的Go实现,可以定制化过滤器参数

    布谷鸟过滤器 布谷鸟过滤器去工具。 由您配置 从移植 概述 布谷鸟过滤器是布隆过滤器的替代品,用于近似的集合成员查询。 布隆过滤器是众所周知的节省空间的数据结构,可用于诸如“项目x是否在集合中?”之类的查询...

    angularjs过滤器--filter与ng-repeat配合有奇效

    在介绍AngularJS过滤器-filter与ng-repeat的配合使用时,我们首先需要了解这两个指令在AngularJS框架中所扮演的角色。AngularJS是一个开源的前端框架,由Google支持,广泛用于开发动态Web应用程序。它通过引入双向...

    jsp filter 过滤器功能与简单用法示例

    使用JSP过滤器的注意事项包括:确保过滤器的配置正确,避免在doFilter方法中引起循环引用或无限递归,合理使用过滤器链的调用顺序,以及正确配置web.xml文件以避免部署时出现错误。开发者在设计过滤器时应当尽量保证...

    java 过滤器

    在Java Web开发中,过滤器(Filter)是一个非常重要的组件,它允许我们在数据处理之前或之后执行特定的操作,比如身份验证、数据转换、日志记录等。本教程将重点讲解如何使用Java编写过滤器来解决盗链问题。盗链是指...

    USB 过滤器 源代码

    然而,根据描述,这个特定的USB过滤器源代码可能不够稳定,因此在实际应用时需要谨慎对待,仅适用于学习和参考。 源代码由两个文件组成:`filter.c`和`filter.h`。`filter.c`是C语言编写的实现部分,包含了过滤功能...

    logstash-filter-java:通过实现Java接口编写logstash过滤器

    这个接口包含了一个`filter`方法,它是过滤器的核心,负责处理每个传入的事件。在`filter`方法内,你可以根据需要处理事件数据,例如通过正则表达式匹配、JSON解析或自定义逻辑。 4. **配置参数处理**: 通常,过滤...

Global site tag (gtag.js) - Google Analytics