InterviewSolution
Saved Bookmarks
| 1. |
Can filtering be done in an ordered way? If so then how to achieve it? |
|
Answer» Yes. The order of filter-mapping elements in web.xml determines the order in which the web container applies the filter to the servlet. To reverse the order of the filter, you just need to reverse the filter-mapping elements in the web.xml file. |
|