difference between sendredirect,forward and url rewritting

Answer Posted / chandra kunchala

SendRedirect():

1.
this is used to transform the request from one
container to another or from one web-application to another
or with in the web-application also
This happens at client side. this will applicable in
the same container as well as different container which are
located in different places.
2.
when ever browser sending the request to the
server. but that server is responsible to provide the
response for that request then that server delegates that
reuest(re-direct) to the same client with status code:302
and location of other server in which where we can get the
actual response fot that request.
3.
By seeing that status code:302, the browser creates
another request object and send to the another
servlet(anothere servlet) which is by seeing in location
header that was send by the first server.
4.
then the second server will responsible to generate the
actual response fot that request.

5.
here the request comes back to the cleint foa making
another request to another server right? so, there may be
chanse of traffic problems in the transimittin the request
or response.

6.
performance will automaticall reduce.
7.

after commiting the response to the client, we are
not allowed to use response.sendRedirect() method. if we are
use that, we will get RuntimeException saying
illegalStateException.
we can see on browser addressbar with new address of the
second server (servlet)
now.... forward():
1.
this is also used forward the request from one place
to another but it should be in the same web-container.
2.
it will happens at server side.
performance will increase compared to sendRedirect()
3.
after committing the response we are not forward the
request to another like sendRedirect()..

Is This Answer Correct ?    3 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What's the difference between servlets and applets?

733


How do I use cookies to store session state on the client?

712


What is the difference between the servlets and cgi programs?

720


Tell us something about servletcontext interface.

806


Define the servlet mapping.

697


Why the container loads server at the application startup and how?

768


What is the use of welcome-file-list?

744


Explain the servlet filter.

705


Whether we can get deadlock situation in servlets?

790


Can we get PrintWriter and ServletOutputStream both in a servlet?

868


What is the purpose of dispatcherservlet properties?

694


What is the life-cycle of servlets?

835


How do you design microservices?

801


When a servlet accepts a call from a client, it receives two objects. What are they?

971


What are the differences between forward() method and sendredirect() methods?

739