Difference between Filter and Listener in Servlet (Java EE)

前端 未结 10 1115
有刺的猬
有刺的猬 2020-12-22 19:05

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

10条回答
  •  北海茫月
    2020-12-22 19:25

    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

提交回复
热议问题