Java servlet filters are essential components of Java web applications, as filters allow programmers to intercept requests and transform responses for a variety of purposes. Even if you don’t create any filters, servlet containers (like Tomcat) and web frameworks (like Spring) use filters behind the scene.

In this tutorial, you will find a detailed, step-by-step guide to create Java servlet filters for your projects. The code examples in this article are applied in a real world project which you can learn in this Java Servlet, JSP and Hibernate course.

Basically, there are 3 steps to create a filter:

- Write a Java class that implements the Filter interface and override filter’s life cycle methods.

- Specify initialization parameters for the filter (optional).

- Specify filter mapping, either to Java servlets or URL patterns.

Table of content:

1. Create Filter Class

2. Specify Initialization Parameters for Filter

3. Specify Filter Mapping

4. How to create a servlet filter in Eclipse IDE

5. How to create a servlet filter in NetBeans IDE

 

Let’s see each step in detailed.

 

1. Create Filter Class

Typically, a filter class has the following structure like this:

package net.codejava;

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;

public class HelloFilter implements Filter {

	@Override
	public void init(FilterConfig filterConfig) throws ServletException {
		// invoked when an instance of this filter is created by the container
		// used to initialize resources, read parameters...
		
	}

	@Override
	public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain)
			throws IOException, ServletException {
		// invoked when a matching request sent to the server
		// used to intercept the request and transform the response
		
		chain.doFilter(request, response);	// invokes next filter in the chain

	}

	@Override
	public void destroy() {
		// invoked when the filter instance is being destroyed by the container
		// used clean up resources

	}
}
As you can see, this class must implement the Filter interface and override its three life cycle methods: init(), doFilter() and destroy(). The purpose of each method is clearly explained in the comments. Read this article to learn more about the annotation type @WebFilter.



NOTE: Since Java Servlet API 4.0, you can override only the doFilter() method because the Filter interface implements the init() and destroy() as default methods. For example:

package net.codejava;

import java.io.IOException;

import javax.servlet.*;

public class HelloFilter implements Filter {

	@Override
	public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain)
			throws IOException, ServletException {
		// invoked when a matching request sent to the server
		// used to intercept the request and transform the response
		
		chain.doFilter(request, response);	// invokes next filter in the chain

	}	
}
 

2. Specify Initialization Parameters for Filter

You can specify initialization parameters for the filter in the web deployment descriptor file (web.xml) like this:

<filter>
	<filter-name>Hello Filter</filter-name>
	<filter-class>net.codejava.HelloFilter</filter-class>

	<init-param>
		<param-name>message</param-name>
		<param-value>A message from Hello Filter</param-value>
	</init-param>
	
	<init-param>
		<param-name>threshold</param-name>
		<param-value>1024</param-value>
	</init-param>
</filter>
As you can see, you must specify the filter name and its fully qualified class name:

<filter-name>Hello Filter</filter-name>
<filter-class>net.codejava.HelloFilter</filter-class>
An each parameter is declared like this:

<init-param>
	<param-name>threshold</param-name>
	<param-value>1024</param-value>
</init-param>
You can specify as many parameters as you want. Then in the filter’s init() method you can read these initialization parameters via the FilterConfig object like this:

public void init(FilterConfig fConfig) throws ServletException {
	String message = fConfig.getInitParameter("message");
	String threshold = fConfig.getInitParameter("threshold");

	// do something with the parameters
}
 

NOTE: You can use annotations to specify initialization parameters right inside the filter class, but it is not recommended because that requires re-compiling the code when you want to change the values of the parameters.

 

3. Specify Filter Mapping

The purpose of a filter is to intercept requests, so you have to specify what URLs will be handled by the filter via the mapping step. You can map a filter to any URL patterns using either XML or annotations.

 

Specify Filter Mapping via XML

You can map a filter to a servlet like this:

<filter-mapping>
	<filter-name>Hello Filter</filter-name>
	<servlet-name>Hello Servlet</servlet-name>
</filter-mapping>
The servlet is declared and mapped in the web.xml file as follows:

<servlet>
	<servlet-name>Hello Servlet</servlet-name>
	<servlet-class>net.codejava.HelloServlet</servlet-class>
</servlet>

<servlet-mapping>
	<servlet-name>Hello Servlet</servlet-name>
	<url-pattern>/hello</url-pattern>
</servlet-mapping>
If the servlet class is annotated using @WebServlet annotation, you must specify the name of the servlet like this:

@WebServlet(name = "Hello Servlet", urlPatterns = {"/hello"})
public class HelloServlet extends HttpServlet {

}
 

You can map a filter to a URL pattern like this:

<filter-mapping>
	<filter-name>Hello Filter</filter-name>
	 <url-pattern>/*</url-pattern>
</filter-mapping>
Here, the filter Hello Filter is mapped to the URL pattern /*, which means it will intercept all the requests.

And the following example illustrates how to map a filter to multiple URL patterns:

<filter-mapping>
	<filter-name>Hello Filter</filter-name>
	 <url-pattern>/hello</url-pattern>
	 <url-pattern>/bonjour</url-pattern>
	 <url-pattern>/ciao</url-pattern>
</filter-mapping>
 

Specify Filter Mapping using Annotations

From Servlet API 3.0, you can use the @WebFilter to annotate a class a filter. For example:

import javax.servlet.annotation.WebFilter;
// other imports

@WebFilter("/hello")
public class HelloFilter implements Filter {
	// implement life cycle methods…
}
You can see this filter class is mapped to the URL pattern /hello - which is more convenient than using XML, right?

The following example shows how to map a filter to multiple URL patterns:

@WebFilter({ "/servlet1", "/servlet2", "/servlet3" })
public class FilterA implements Filter {

}
And this example illustrates how to map a filter to a servlet using annotation:

@WebFilter(servletNames = { "Hello Servlet" })
public class HelloFilter implements Filter {

}
Note that you can map one filter to one or more serlvets/URL patterns, and map multiple filters to one servlet/URL pattern.

 

4. How to create a servlet filter in Eclipse IDE

When developing a Java web application using Eclipse IDE, you can create a filter easily via wizards. To create a filter class in Eclipse, click menu File > New, and choose Filter under Web group:

New Filter from Wizard

Or you can right-click on a package, and click New > Filter:

New Filter from Context Menu

Then specify the class name of the filter:

Create Filter 1

Click Next. Then specify filter mappings:

Create Filter 2

You can specify URL pattern mapping:

Edit Filter Mapping

or specify servlet mapping:

Edit Filter Mapping Servlet

Click Finish and Eclipse will generate basic code for the filter class with @WebFilter annotations.

 

5. How to create a servlet filter in NetBeans IDE

NetBeans IDE also makes it easy to create a filter. Click menu File > New File… and choose Filter in the Web group:

NB - New Filter 1

Click Next, and specify the class name for the filter:

NB - New Filter 2

Click Next to configure filter deployment:

NB - New Filter 3

You can choose to use XML mapping for filter by checking the option “Add information to deployment descriptor (web.xml)”. And edit the filter mappings:

NB - Filter Mapping

Finally, specify the init parameters for the filter:

NB - New Filter 4

Click Finish and NetBeans will generate code for the filter based on the information you have provided.

That's almost the things you need to know about creating a Java filter. I recommend you to read this famous Servlet and JSP book to learn fully about Java servlet and JSP. If you want to get hands-on experience in developing a fully functional website with Java, this course is my recommendation.

 

References:

The Essentials of Filters

Filter Javadoc

 

Related Tutorials:

 

Other Java Servlet Tutorials:


About the Author:

is certified Java programmer (SCJP and SCWCD). He started programming with Java in the time of Java 1.4 and has been falling in love with Java since then. Make friend with him on Facebook and watch his Java videos you YouTube.



Add comment

   


Comments 

#3Kishan2021-03-24 00:41
It helped me a lot...
thanks a lot
Quote
#2anonymous2020-07-04 08:53
So far, this is the best tutorial I found about this topic. Very well explained, thanks.
Quote
#1hello2020-02-27 05:04
this is good i learned very much from this thank you for doing this you get lost
Quote