Difference between JSP forwarding and redirection

Source: Internet
Author: User

After a long time, I forgot the basics. Let's take a look at it today. Hehah... learn new things with a warm understanding !!!

 

 

1. requestdispatcher. Forward ()-forward
Is used on the server. When forward () is used, the servlet engine transmits the HTTP request from the current servlet or
JSP to another servlet, JSP or common HTML file, that is, your
Form submitted to A. jsp. In A. jsp, forward () is used to redirect to B. jsp. At this time, all the information submitted by form in
B. All JSP files can be obtained, and parameters are automatically transferred.
However, forward () cannot be redirected to a JSP file with a frame, and can be redirected to an HTML file with a frame. At the same time, forward () cannot
It is followed by parameters, such as Servlet? Name = Frank, this does not work. You can use response. setattribute ("name ",
Name) to the next page.

After forwarding, the URL in the browser address bar remains unchanged.

For example, redirection in Servlet
Public void dopost (httpservletrequest request, httpservletresponse response)
Throws servletexception, ioexception
{
Response. setcontenttype ("text/html; charset = gb2312 ");
Servletcontext SC = getservletcontext ();
Requestdispatcher RD = NULL;
RD = SC. getrequestdispatcher ("/index. jsp"); // targeted page
Rd. Forward (request, response );
}
Usually used in servlet, not in JSP.

2. response. sendredirect ()-redirection
It works on the user's browser. sendredirect () can be passed with parameters, such as Servlet? Name = Frank is uploaded to the next page, and can be redirected to different hosts. sendredirect () can be used to redirect JSP files with frame.
After redirection, the URL of the redirection page will appear in the address bar of the browser.
For example, redirection in Servlet
Public void dopost (httpservletrequest request, httpservletresponse response)

Throws servletexception, ioexception
{
Response. setcontenttype ("text/html; charset = gb2312 ");
Response. sendredirect ("/index. jsp ");
}
Because response is an implicit object in the JSP page, you can use response. sendredirect () in the JSP page to directly implement relocation.

Because response is an implicit object in the JSP page, you can use response. sendredirect () in the JSP page to directly implement relocation.

Note:
(1) When response. sendredirect is used, no HTML output is available.
This
It is not absolute. html output does not actually mean that HTML cannot be sent to a browser. In fact, the current server has a cache mechanism, generally at 8 K (I mean JSP
Server), which means that, unless you disable the cache or use out. Flush () to force refresh, there are a few
HTML output is also allowed.
(2). response. sendredirect should be followed by a return statement;
We already know that response. sendredirect is switched through a browser, so there will be actual actions only after page processing is complete. Now that you have to turn, what is the significance of the subsequent output? In addition, the redirection may fail due to the subsequent output.
Comparison:
(1). Request dispatcher. Forward () is the redirection of control in the container, and the address after the redirection is not displayed in the address bar of the client browser;
(2). response. sendredirect () is a complete jump. the browser will get the jump address and resend the request link. In this way, the link address after the jump is displayed in the address bar of the browser.
The former is more efficient. When the former can meet the needs, try to use the requestdispatcher. Forward () method.

Note: in some cases, to jump to a resource on another server, you must use the httpservletresponse. sendrequest () method.

3. <JSP: Forward page = ""/>

The underlying part is implemented by requestdispatcher, so it carries the marks of the requestdispatcher. Forward () method.

If there are a lot of output before <JSP: Forward>, and the previous output will automatically output to the client when the buffer is full, this statement will not work, so pay special attention to this.
Note: The browser address cannot be changed. Refresh will cause repeated submission.

4. Modify the location attribute of the HTTP header to redirect
You can directly modify the address bar to redirect the page.
The JSP file code is as follows:

<%
Response. setstatus (httpservletresponse. SC _moved_permanently );
String newlocn = "/newpath/JSA. jsp ";
Response. setheader ("location", newlocn );
%>

5. When a page is displayed in JSP for several seconds, it is automatically redirected to another page.
In the HTML file, the following code:
<Meta http-equiv = "refresh" content = "300; url = target. jsp">
Its meaning: after five minutes, the page automatically becomes target.html. In the code, 300 is the refresh delay time, in seconds. Targer.html: The target page you want to switch to. If this page is set, the page is automatically refreshed.
As shown in the preceding figure, you can use setheader to automatically redirect a page to another page after several seconds.
Key code:
String content = staytime + "; url =" + URL;
Response. setheader ("refresh", content );

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.