What is the use of RequestDispatcher in servlet?

Answers were Sorted based on User's Feedback



What is the use of RequestDispatcher in servlet?..

Answer / srikanth

While developing complex web applications you need distribute request processing and response to multiple servlets in this case you need dispatch request from one component to another

Is This Answer Correct ?    1 Yes 0 No

What is the use of RequestDispatcher in servlet?..

Answer / mahesh

When we want to use some fields of one servlet page in
another servlet page this RequestDispatcher is very useful
through the methods

1.forward()
2.include()

Is This Answer Correct ?    3 Yes 3 No

What is the use of RequestDispatcher in servlet?..

Answer / ram

to connect another webapplication in a web application

Is This Answer Correct ?    2 Yes 2 No

What is the use of RequestDispatcher in servlet?..

Answer / gani kumar

In creating the web componets we find a requirement to reuse the components in different combinations avoiding the code duplication and have a proper reponsibility divison.
To meet this requirement in servlet envirnoment that is support a servlet acess another web resource like another servlet in the application,java servlet intrduces request dispatcher

Is This Answer Correct ?    0 Yes 0 No

What is the use of RequestDispatcher in servlet?..

Answer / malyadri b

RequestDispatcher
rd=ServletContext.getRequestDispatcher("url of resource");
rd.forward(req,res);----used to forward to another resource.
rd.include(req,res);----used to include other resource.

Is This Answer Correct ?    0 Yes 0 No

What is the use of RequestDispatcher in servlet?..

Answer / suresh g

RequestDispatcher:

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.

Is This Answer Correct ?    0 Yes 1 No

What is the use of RequestDispatcher in servlet?..

Answer / katamraju

By using Request dispatcher we can include or forward a
request to a another resource by using only one request
and response.

Is This Answer Correct ?    12 Yes 17 No

What is the use of RequestDispatcher in servlet?..

Answer / ravikiran

request dispatcher will forward or include the response to
the output stream

Is This Answer Correct ?    8 Yes 23 No

Post New Answer

More Servlets Interview Questions

Is there any differance b/w getting servlet context from servlet config and session? if yes then what is that?

7 Answers  


Why is http protocol called as a stateless protocol?

0 Answers  


How to make sure a servlet is loaded at the application startup?

0 Answers  


What is string tokenizer?

0 Answers  


What are the ways to handle multi-threading in servlets?

0 Answers  






In servlets, Why do we need both GET and POST method implementations?

3 Answers   IBM,


Explain the role of dispatcherservlet and contextloaderlistener.

0 Answers  


What is servlet name in web xml?

0 Answers  


What is the use of servlet wrapper classes?

0 Answers  


Can you create a deadlock condition on a servlet?

0 Answers  


Why don't we write a constructor in a servlet?

0 Answers  


what is the difference b/w DispatchAction and LookUpDispatchAction?

1 Answers   Deloitte, iGate, Tech Mahindra,


Categories