What is the difference between sendRedirect() and forward()?
in what situations do we have to use send redirect()
instead of forward().
Answer Posted / bhupathi.vm
1.forward will forward the request without saving the client
information where as sendRedirect will save the previous
information and send to another requested page.
2.The forward operation happens in the same request itself.
Once if you forward a request, you cannot add any more
response content after the forward command. Becuase, the
servlet ignores the remaining things and forwards the
request to another servlet.
The send redirect is the one, which redirects you to some
other servlet or page. The redirection is not within the
same request, but it is a new request. Using send redirect,
you can access a page available on another context / server.
| Is This Answer Correct ? | 11 Yes | 9 No |
Post New Answer View All Answers
What is 2 stands for in j2ee?
Who generates bytecode in java?
Is tomcat a java ee?
What is javafx java?
How many types of constructors are there in java?
Why tomcat is used in java?
Difference between load and get method?
What spring is in related to j2ee?
Describe orm?
Why primitive data types in java are not objects?
What is repaint in java?
Is a relationship java?
What is layout manager in java?
What is urn?
What is pure java?