What is Servlet Filter And What does it work?
Answer Posted / surajkumar.java
Filters are powerful tools of Servlet platform. These are
just like a servlet which plugs into the request handling
process and executes in addition to the normal page
processing. Filters manipulate both request and response in
web application. Filters can be applied to any resources
like HTML, graphics, a JSP page, servlet etc, served by a
servlet engine. These are commonly used for authentication,
data format conversion and page redirect to other page and
catching etc.
A java class which implements javax.servlet.Filter is
configured as filter in web.xml file. For each request in
web application, the servlet container decides which filters
to apply, and adds those filters to a chain in the same
order they appear in web.xml. As a filter is just like a
servlet, it has its life cycle (init(), doFilter() and
destroy() methods).
| Is This Answer Correct ? | 22 Yes | 3 No |
Post New Answer View All Answers
How many times may an objects finalize() method be invoked by the garbage collector?
Write a singleton program?
Explain the advantages and disadvantages of detached objects.
What is a tasks priority and how is it used in scheduling?
What is the purpose of the finally clause of a try-catch-finally statement?
What you mean by COM and DCOM?
What is RMI and what are the services in RMI?
What is the diffrence between a local-tx-datasource and a xa-datasource?
Name the class that is used to bind the server object with RMI Registry?
Explain what is synchronization?
What is ripple effect?
Explain about local interfaces.
What is the difference between system.out ,system.err and system.in?
Explain about RMI Architecture?
what is meant by JRMP?