What is Request Dispatcher?

What is Request Dispatcher?

View Answers

June 6, 2012 at 5:21 PM

RequestDispatcher class is mainly used to 'pass on' the current request to another program (servlet) and therefore allows 'chaining' of the programs. A RequestDispatcher primarily contains two methods include() and forward(). include() method includes the response of another program while forward() method forwards the request of the current program to another one.

Servlet RequestDispatcher include method

Servlet RequestDispatcher forward method









Related Tutorials/Questions & Answers:
Advertisements