How to Implement request forwarding in Jsp and Servlet

Source: Internet
Author: User

Jsp request. getRequestDispatcher ("/*. jsp"). forward (request, response );
Servlet sendRedirect () method principle:
1. The client sends the request and Servlet1 processes it.
2. Servlet1 calls the sendReadirect () method to locate the client request to Servlet2.
3. Access servlet2in the client browser.
4. Servlet2 responds to the browser on the client.
Principles of the forward () method:
1. The client sends the request and Servlet1 processes it.
2. The Servlet calls the forward () method and forwards the request to Servlet2 to process the request and serve the client.
3. Servlet2 responds to the browser on the client.

<Jsp: forward/> or <jsp: include/>
Request. getRequstDispatcher (""). forward ();
Request. getRequstDispatcher (""). include ();


In fact, jsp is also a serverlet

Author: "Didi"
 

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.