InterviewSolution
Saved Bookmarks
| 1. |
What do you mean by filter in servlet? |
|
Answer» A filter is an object that FILTERS tasks that are EITHER request to a resource, or RESPONSE from a resource, or both. Filtering is PERFORMED in doFilter method. Filters get configured in deployment descriptor of your application. |
|