Summary of redirection Technology in Servlet and JSP

Source: Internet
Author: User

1. RequestDispatcher. forward ()

It works on the server. When forward () is used, the Servlet engine transmits the HTTP request from the current Servlet and JSP to another Servlet, JSP or common HTML file, that is, your form is submitted to. jsp, in. jsp uses forward () to redirect to B. jsp. At this time, all information submitted by form is in B. jsp can be obtained, and parameters are automatically transmitted.

However, forward () cannot be redirected to a jsp file with a frame. It can be redirected to an html file with a frame. At the same time, forward () cannot be passed with parameters after it, such as servlet? Name = frank. If this is not the case, you can use response. setAttribute ("name", name) in the program to upload it to the next page.

The URL in the browser address bar remains unchanged after redirection.

For example, redirect in Servlet and JSP

 
 
  1. Public void doPost (HttpServletRequest request, HttpServletResponse response)
  2. Throws ServletException, IOException
  3. {
  4. Response. setContentType ("text/html;Charset=Gb2312");
  5. ServletContextSC=GetServletContext();
  6. RequestDispatcherRd=Null;
  7. Rd=SC. GetRequestDispatcher ("/index. jsp"); // targeted page
  8. Rd. forward (request, response );
  9. }

Usually used in servlet, not in jsp.

2. response. sendRedirect ()

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

 
 
  1. public void doPost(HttpServletRequest request,
    HttpServletResponse response)  
  2. throws ServletException,IOException  
  3. {  
  4. response.setContentType("text/html; charset=gb2312");  
  5. 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.

Note:

(1) When response. sendRedirect is used, no HTML output is available.

This is not absolute. The absence of HTML output means that HTML cannot be sent to a browser. In fact, the current server has a cache mechanism, generally 8 k I mean JSP SERVER), which means that unless you disable the cache or you use out. flush () force refresh. A small amount of HTML output is allowed before sendRedirect is used.

(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.

 
 
  1. <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:

 
 
  1. <%  
  2. response.setStatus(HttpServletResponse.SC_MOVED_PERMANENTLY);  
  3. String newLocn = "/newpath/jsa.jsp";  
  4. response.setHeader("Location",newLocn);  
  5. > 

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:

 
 
  1. <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.

From the summary of Servlet and JSP redirection technologies, we can use setHeader to automatically redirect a page to another page after several seconds.

  1. Brief Introduction to advanced operations on JSP Databases
  2. Interactive use of JSP data and JavaScript data
  3. Functions and principles of several encodings in JSP and Servlet
  4. How to solve the problem of garbled JSP page display
  5. Connect to various databases using JDBC in JSP

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.