`

web.xml配置详解之filter

阅读更多

一.定义

<filter>
	<filter-name>encodingfilter</filter-name>
	<filter-class>com.my.app.EncodingFilter</filter-class>
	<init-param>
		<param-name>encoding</param-name>
		<param-value>UTF-8</param-value>
	</init-param>
</filter>
<filter-mapping>
	<filter-name>encodingfilter</filter-name>
	<url-pattern>/*</url-pattern>
</filter-mapping>

 

二.作用
        用于指定WEB容器的过滤器,在请求和响应对象在Servlet处理之前和之后,可以通过此过滤器对这两个对象进行处理。

 

三.备注
        filter-class 中指定的过滤器类须继承 javax.servlet.Filter 具有须有以下三种方法
        init(FilterConfig filterConfig):初始化;一般情况下时读取配置文件中的init-param参数值 如 filterConfig.getInitParameter("encoding")
        doFilter(...):用于对request,response进行处理,并能过chain.doFilter(...) 交过下一个控制器
        destroy():资源销毁

 

四.示例:如编码过滤器
        web.xml配置

<filter>
	<filter-name>encodingfilter</filter-name>
	<filter-class>com.my.app.EncodingFilter</filter-class>
	<init-param>
		<param-name>encoding</param-name>
		<param-value>UTF-8</param-value>
	</init-param>
</filter>
<filter-mapping>
	<filter-name>encodingfilter</filter-name>
	<url-pattern>/*</url-pattern>
</filter-mapping>

 

package com.myapp;  
  
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;  
import javax.servlet.http.HttpServletResponse;  
  
/** 
 * 
 */  
public class EncodingFilter implements Filter {  
  
    /** 
     * 配置中默认的字符编码 
     */  
    protected String encoding = null;    
    protected FilterConfig filterConfig;  
    /** 
     * 当没有指定默认编码时是否允许跳过过滤 
     */  
    protected boolean ignore = true;   
    /** 
     *  
     */  
    public EncodingFilter() {  
        // TODO Auto-generated constructor stub   
    }  
  
    /* (non-Javadoc) 
     * @see javax.servlet.Filter#destroy() 
     */  
    public void destroy() {  
        // TODO Auto-generated method stub   
        this.encoding=null;  
        this.filterConfig=null;  
    }  
      
    /* (non-Javadoc) 
     * @see javax.servlet.Filter#doFilter(javax.servlet.ServletRequest, javax.servlet.ServletResponse, javax.servlet.FilterChain) 
     */  
    public void doFilter(ServletRequest request, ServletResponse response,  
            FilterChain chain) throws IOException, ServletException {  
        // TODO Auto-generated method stub   
        HttpServletRequest hRequest=(HttpServletRequest)request;  
        HttpServletResponse hResponse=(HttpServletResponse)response;  
        //Conditionally select and set the character encoding to be used     
        if(ignore || hRequest.getCharacterEncoding()==null){  
            String coding=selectEncoding(hRequest);  
            if(coding!=null){  
                hRequest.setCharacterEncoding(coding);  
                hResponse.setCharacterEncoding(coding);  
            }  
        }  
        //将控制器传向下一个filter   
        chain.doFilter(hRequest, hResponse);  
  
    }  
  
    /* (non-Javadoc) 
     * @see javax.servlet.Filter#init(javax.servlet.FilterConfig) 
     */  
    public void init(FilterConfig filterConfig) throws ServletException {  
        // TODO Auto-generated method stub   
        this.filterConfig=filterConfig;  
        this.encoding=filterConfig.getInitParameter("encoding");  
        System.out.println(this.encoding);  
        String value = filterConfig.getInitParameter("ignore");  
        if (value == null) {  
            this.ignore = true;  
        } else if (value.equalsIgnoreCase("true")) {  
            this.ignore = true;  
        } else if (value.equalsIgnoreCase("yes")) {  
            this.ignore = true;  
        } else {  
            this.ignore = false;  
        }  
    }  
    protected String selectEncoding(ServletRequest request) {  
        return (this.encoding);  
    }
}

        init方法是在WEB应用启动就会调用,doFilter则是在访问filter-mapping映射到的url时会调用。

 

文章来源:http://blog.csdn.net/liaoxiaohua1981/article/details/6761053

分享到:
评论

相关推荐

    web.xml配置详解

    web.xml 配置详解 web.xml 配置详解是指在 Java Web 应用程序中使用的部署描述符配置文件。它是一个 XML 文件,包含了很多描述 servlet/JSP 应用的各个方面的元素,如 servlet 注册、servlet 映射以及监听器注册。 ...

    web.xml配置详解, web.xml web.xml 配置实例

    Web.xml 配置详解 Web.xml 是一个部署描述符文件,用于描述 Web 应用程序的配置信息。该文件是基于 XML 语法的,所有的元素都是大小写敏感的。下面是 web.xml 配置文件的详细解释: 定义头和根元素 在 web.xml ...

    java web项目 web.xml配置详解

    三、关键配置详解 1. Servlet配置: - `&lt;servlet&gt;`:定义Servlet,如`&lt;servlet-name&gt;`指定Servlet名称,`&lt;servlet-class&gt;`指定Servlet的全限定类名。 - `&lt;servlet-mapping&gt;`:通过`&lt;url-pattern&gt;`将Servlet映射到...

    web.xml配置文件详解

    ### web.xml配置文件详解 #### 一、概述 `web.xml`是Java Web应用程序的核心配置文件之一,主要用于定义Web应用程序的结构与行为。它是Servlet容器(如Tomcat)读取Web应用程序配置信息的主要来源,因此深入理解其...

    web.xml 配置详解

    web.xml 配置详解,需要的下载了。。。Web.xml常用元素和在java web规范中说明.按照listner,filter,servlet的顺序初始化

    详解Spring mvc的web.xml配置说明

    例如,`org.springframework.web.filter.CharacterEncodingFilter`是一个预设的过滤器,用于确保请求和响应的字符编码一致。我们可以在`filter-mapping`标签中指定哪些URL应该经过此过滤器。 3. **处理请求...

    部署描述文件web.xml配置详解.doc

    ### 部署描述文件web.xml配置详解 #### 一、引言 在Java Web开发中,`web.xml`是一个非常重要的配置文件,它作为Web应用程序的部署描述符,负责管理与应用程序相关的各项配置信息。本文将深入解析`web.xml`的各项...

    Web.xml配置详解

    ### Web.xml配置详解 #### 一、Web.xml概述 `web.xml` 文件是Java Web应用程序的核心配置文件之一,主要用于配置应用程序级别的各种初始化参数、监听器、过滤器、Servlet映射等。通过`web.xml`,开发者可以灵活地...

    web.xml配置详细介绍(CHM)

    **web.xml配置详解** 在Java Web开发中,`web.xml`是部署描述符(Deployment Descriptor)的核心文件,它定义了应用程序的行为和结构。这个CHM文件深入解析了`web.xml`的各种配置元素,帮助开发者更好地理解和控制...

    web.xml 中的listener、 filter、servlet 加载顺序及其详解.doc

    Web.xml 中的 listener、filter、servlet 加载顺序及其详解 在 Web 应用程序中,web.xml 文件扮演着非常重要的角色,它定义了 Web 应用的结构和配置。其中,listener、filter、servlet 是三个非常重要的概念,它们...

    web.xml配置详解.docx

    【web.xml配置详解】 在Java Web应用程序中,`web.xml`是部署描述符(Deployment Descriptor)文件,它是应用的核心配置文件,负责定义应用的行为、组件和环境参数。它位于`WEB-INF`目录下,用于配置Servlet、过滤...

    关于Web.xml配置说明

    【Web.xml配置说明】 在B/S(Browser/Server,浏览器/服务器)项目中,Web.xml文件扮演着核心角色,它是Web应用程序的部署描述符。它包含了一系列配置信息,用于指导服务器如何运行和管理Web应用。以下是对Web.xml...

Global site tag (gtag.js) - Google Analytics