Passing objects using Request domains

Source: Internet
Author: User

Lifecycle: Created by the server before the service method call, passing in the service method. The entire request is over, requesting the end of life.
Scope of action: the entire request chain.
Function: Share data throughout the request chain, most commonly: data processed in the servlet is given to the JSP display, where parameters can be placed in the request domain with the past.

public void doget (HttpServletRequest request, httpservletresponse response)
Throws Servletexception, IOException {
Request.setattribute ("banana", "yellow Banana");
This.getservletcontext (). Getrequestdispatcher ("/servlet/demo4"). Forward (request, response);

String result = "Yellow banana";
Request.setattribute ("result", result);
Request.getrequestdispatcher ("/show.jsp"). Forward (request, response);

Passing objects using Request domains

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.