chain.doFilter(req,res);
which we used in servlet program.i want to know what is the use of the method in servlet?
Also what is the use of filter and chain concept ion java servlets?
| |||||
feedback
|
|
Servlet filters are implementation of the chain of responsibility pattern The point is that each filter stays "in front" and "behind" each servlet it is mapped to. So if you have a filter around a servlet, you'll have:
You also have the option not to call | |||||||
feedback
|
|
Filters are there to complement Servlets. For the usage, you should read this, The Essentials of Filters. Filters are implemented using Chain of Responsibility GoF pattern. | ||||
|
feedback
|