Difference between JSP forward and redirect [duplicate]

Please explain the difference between jsp:forward and redirect.
What is happening in each case?


Solution 1:

  • redirect sets the response status to 302 [1], and the new url in a Location header, and sends the response to the browser. Then the browser, according to the http specification, makes another request to the new url

  • forward happens entirely on the server. The servlet container just forwards the same request to the target url, without the browser knowing about that. Hence you can use the same request attributes and the same request parameters when handling the new url. And the browser won't know the url has changed (because it has happened entirely on the server)


[1]: This is an example of industry practice contradicting the standard. The HTTP/1.0 specification (RFC 1945) required the client to perform a temporary redirect (the original describing phrase was "Moved Temporarily"), but popular browsers implemented 302 with the functionality of a 303 See Other. Therefore, HTTP/1.1 added status codes 303 and 307 to distinguish between the two behaviours. However, some Web applications and frameworks use the 302 status code as if it were the 303. Source

Solution 2:

I've heard interesting explanations of redirect and forward. Imagine that you need some service from your friend. It doesn't matter what service. Suppose that your friend can't help you but knows who can.

He would REDIRECT your request if he would tell you: "I can't handle this, but I know who can. Here his phone number. Call him."

He would FORWARD your request if he would tell you: "No problem" and calls that man by himself without notifying you about involving another person in handling your desire. Then, your friend will get the result of sorting out your wish and transmit it to you.

Solution 3:

Redirect is also slower compared to forward because it has to go through the browser and wait for the browser to make a new request, and also therefore causing request scope objects to be unavailable after redirect.

Solution 4:

Redirect :

  1. User requests a resource.
  2. Response sent to the user.
  3. This is not the requested resource, this is response with HTTP code 302 and contains the URL of the requested resource.
  4. URL could be same or different from the requested URL.
  5. Client browser makes request for resource again with the new URL, this time the actual resource is sent to the user.

Forward:

It is the process of simply displaying the requested resource to the user. It happens entirely on the server side.