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?

link|improve this question

0% accept rate
5  
note that you're invited to mark answers to your questions as accepted. You have 6 questions and 0 accepted answers. – Bozho Nov 8 '10 at 10:33
feedback

2 Answers

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:

void doFilter(..) { 
    // do stuff before servlet gets called

    // invoke the servlet, or any other filters mapped to the target servlet
    chain.doFilter(..);

    // do stuff after the servlet finishes
}

You also have the option not to call chain.doFilter(..) in which case the servlet will never be called. This is useful for security purposes - for example you can check whether there's a user logged-in.

link|improve this answer
While writing my answer, I got a message that somebody already provided one. But I still kept working on my take, thinking that the provider must have missed mentioning the pattern and the link to it. But after submitting mine, I found out that I was completely wrong. +1 – Adeel Ansari Nov 8 '10 at 10:24
@Adeel Ansari anyway, you provided a link that I didn't - the one to "essentials of filters", so +1 there as well. – Bozho Nov 8 '10 at 10:30
Thanks for your generosity. – Adeel Ansari Nov 8 '10 at 10:50
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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.