|
JSP & Servlet Tips - diff between redirect and forward |
|
|
|
|
Written by Sleepy Egg
|
|
Sunday, 31 July 2005 |
|
What is the difference between a redirect and a forward?
A redirect returns to client side and ask browser to make a new request of other resource.
A forward doesn't return to client side (not yet), it call other resource within servlet container.
JSP include tag is implemented using a forward.
|