What is Servlet Filter And What does it work?
Answer / 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 |
If your ui seems to freeze periodically, what might be a likely reason?
Difference Between getRequest and PostRequest?
java is fully object oriented languages or not? why?
For an example, if we have some variable in run method, and we created one or more threads. Does all threads will share the same variable or a copy of variable is created for each thread??
Where can I find seam examples and documentation?
whats is mean by object and class?
the advantages of polymorphic
If we opened Windows Internet Explorer 4 times, does it starts 4 processes or 4 threads?
To make an object to begin executing as a separate thread, what method is used?
What is the difference between the session.update() method and the session.lock() method?
wahts is mean by dynavalidatorform in struts/
What is meant by multi-threading?