over 9 years ago
Servlet Filter:
Servlet Filter is used to filter the unnecessary requests that is received at the servlet end. It is used to perform tasks such as conversion, logging, compression, encryption and decryption, input validation etc.
It is called before and after the request is processed by the servlet.
Its uses:
Advantages:
There are three interfaces of Filter API:
A filter is created by implementing the filter interface. It provides the following lifecycle methods:
public void init(FilterConfig config): It is used to initialize the filter.
public void doFilter(HttpServletRequest request,HttpServletResponse response, FilterChain chain): This is used for handling the requests for the entries mapped in the web.xml file . As soon as it receives the request it filters out the unnecessary requests.
public void destroy():This is invoked only once when filter is taken out of the service.
FilterChain interface:
It is used for chaining purpose. i.e. it passes the object to the next filter or the next resource in the chain.
There is one method in this:
public void doFilter(HttpServletRequest request, HttpServletResponse response):it passes the control to the next filter or resource.
The web container created it's object and is used to fetch the configuration information from the web.xml file.
It has the following methods:
public void init(FilterConfig config):This method is invoked only once and it is used to initialize the filter.
public String getInitParameter(String parameterName):It returns the parameter value for the particular parameter name.
public java.util.Enumeration getInitParameterNames():It gives an enumeration with the list of all the names.
public ServletContext getServletContext(): It returns the ServletContext object.
Filter mapping in web.xml file:
0 Comment(s)