What is the difference between sendRedirect() and forward()?
in what situations do we have to use send redirect()
instead of forward().
Answer Posted / fateh
the main difference is that forward() do not save the
information while sending to the client but on the other
hand sendRedirect() saves the information while redirecting
to the other page.
Basically, sendRedirect() is used to redirect ot the error
page and forward() is a request dispatcher method to forward
request to the new page. So, if we are talking in this
context sendRedirect() is faster than forward(). According
to he above mentioned concept, forward() is faster than
sendRedirect() but if we are using sendRedirect() to send to
the error page it is faster.
| Is This Answer Correct ? | 3 Yes | 6 No |
Post New Answer View All Answers
Describe the file types *.ear, * .jar and *.war?
What is Document Object Model?
What is architecture neutral in java?
What is java developer job description?
What are struts?
What is java advanced?
What are the advantages of object-relational mapping (orm)?
What is a thin client?
What is external entity?
What is gridlayout in java?
What is commit?
What are the types of j2ee clients?
Is java ee and j2ee same?
What is data?
What is callback methods Component methods called by the container to notify the component of important events in its life cycle?