Question:

What’s the difference between sendRedirect and forward methods ?

Answer:

The sendRedirect method creates a new request, while the forward method just forwards a request to a new target. The previous request scope objects are not available after a redirect, because it results in a new request. On the other hand, the previous request scope objects are available after forwarding. FInally, in general, the sendRedirect method is considered to be slower compare to the forward method.


Keywords:

© 2017 QuizBucket.org