Filter Mapping in Web.xml
โก Smart Summary
Filter Mapping in Web.xml defines how JSP filters intercept client requests and server responses in a Java web application. It registers each filter in the deployment descriptor, enabling authentication, logging, compression, and encryption before resources are accessed.

What is JSP Filters?
- Filters in web.xml are used for filtering functionality of the Java web application.
- They intercept the requests from client before they try to access the resource.
- They manipulate the responses from the server and sent to the client.
Filters are defined in web.xml, and they are a map to servlet or JSP. When JSP container starts with the web application, it creates the instance of each filter in web.xml that have been declared in the deployment descriptor.
Types of Filters in JSP
JSP supports several filter types, each handling a specific concern in the request-response cycle:
- Authentication filters
- Data compression filters
- Encryption filters
- MIME chain filters
- Logging Filters
- Tokenizing filters
JSP Filter Methods
Once you know the filter types, it helps to understand the methods that control a filter’s lifecycle. Following are the filter methods:
Public void doFilter(ServletRequest, ServletResponse, FilterChain)
This is called everytime when a request/response is passed from every client when it is requested from a resource.
Public void init(FilterConfig)
This is to indicate that filter in JSP is placed into service.
Public void destroy()
This to indicate the filter has been taken out from service.
Example
In this example, we have created filter and mapped in Java web.xml filter.
Gurufilter.java
package demotest; import java.io.IOException; import java.util.Date; 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 GuruFilter implements Filter { public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException { // TODO Auto-generated method stub HttpServletRequest req = (HttpServletRequest) request; String ipAddress = req.getRemoteAddr(); System.out.println("IP Address "+ipAddress + ", Time is" + new Date().toString()); // pass the request along the filter chain chain.doFilter(request, response); } /** * @see Filter#init(FilterConfig) */ public void init(FilterConfig fConfig) throws ServletException { String guruparam = fConfig.getInitParameter("guru-param"); //Print the init parameter System.out.println("Test Param: " + guruparam); } }
Web.xml
<?xml version="1.0" encoding="UTF-8"?> <web-app id="WebApp_ID" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"> <display-name> test</display-name> <filter> <description> </description> <display-name> GuruFilter</display-name> <filter-name>GuruFilter</filter-name> <filter-class>demotest.GuruFilter</filter-class> <init-param> <param-name>guru-param</param-name> <param-value>This is guru paramter</param-value> </init-param> </filter> <filter-mapping> <filter-name>GuruFilter</filter-name> <url-pattern>/GuruFilter</url-pattern> </filter-mapping>
Explanation of the code
Gurufilter.java
Code Line 17-32: Here we are using “doFilter” method where we are getting request object (in our example the request object is req (HttpServletRequest object)) and get the remote address of the client and printing on the console and also printing date and time on the console.
Code Line 33-37: Here we are using init method where we are taking the init parameter and printing init parameter in the console.
Web.xml
Code Line 10-11: Filter mapping in web.xml for GuruFilter with the class name GuruFilter.java where we have filter-name as GuruFilter and filter class which is directory path of GuruFilter class.
Code Line 13-15: Mapping the init parameter named guru-param and getting the value of it which is placed under filter tag so this init-param has been defined for gurufilter.
Output:
When you execute the above code, you get the following output:
- The output is Test Param from the init parameter
- And fetching IP address, date and time of it.

