There are Filters and Listeners functionality in Servlet. I want to know exact difference between Filter and Listener.
|
feedback
|
|
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 | ||||
|
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. | ||||
|
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. | |||
|
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). | |||
|
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 | |||
|
feedback
|
|
A Servlet Filter dynamically intercepts requests and responses, while Servlet Listener is used for listening various events inside a web containers | |||
|
feedback
|