There are Filters and Listeners functionality in Servlet. I want to know exact difference between Filter and Listener.

link|improve this question

feedback

6 Answers

up vote 5 down vote accepted

Servlet Filter is used for monitoring request and response from client to the servlet, or to modify the request and response, or to audit and log.

Servlet Listener is used for listening to events in a web containers, such as when you create a session, or place an attribute in an session or if you passivate and activate in another container, to subscribe to these events you can configure listener in web.xml, for example HttpSessionListener.

link|improve this answer
feedback

Filetrs are used for pre and post process requests. look at the javax.servlet.Filter in your tomcat/jboss/other container javadoc

Where as the listeners are like triggers that can be attached to events in your app server (let's use the term container here) With listeners you can track application-level, session-level, life-cycle changes, attribute changes etc. The implemented interfaces are javax.servlet.*Listener interface.

Filters are called on a per-request basis and listeners are not. Filetrs have access to request object and listeners don't.

Hope this helps.

link|improve this answer
feedback

Text from Java EE 6

Filter

Filter is an object which transform the request and response (header as well as content).

Listeners

You can monitor and react to events in a servlet's life cycle by defining listener objects whose methods get invoked when life cycle events occur.

link|improve this answer
feedback

You can easily have a rough idea with the English meaning of those two. Filer is there to filter the content/resource which coming to/going out from a Servlet. In the other hand, Listener is there, to do some related things when something happen to the web application(listening).

link|improve this answer
feedback

While you can modify the current event object within a listener, you cannot halt the execution of the current event handler in a listener. You also cannot clear the event queue from within a listener. Besides the imposed differences in capabilities, they are also intended for different purposes. Listeners tend to focus on interacton between the event handler and the model, while filters tend to focus on interaction between the event handler and the controller.

Source : web

link|improve this answer
feedback

A Servlet Filter dynamically intercepts requests and responses, while Servlet Listener is used for listening various events inside a web containers

Difference Between Filter And Listener In Servlet

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.