Difference between request. getparameter and request. getattribute

Source: Internet
Author: User
Request. getattribute (): the value of the variable set during request. Use request. setattribute ("name", "your own value"); To set the value,
Request. getparameter (): extract the sent parameters, for example, request. getparameter.
Is used to accept parameters from the get or POST method
<Form method = post>
<Form method = get>
<A href = "1.jsp? Id = 1 "> OK </a>
Only java. Lang. string can be accepted.
That is, string parameter _id = request. getparameter ("parameter _id ");
Request. getattribute
Is used to accept variables or actions from servlet (in fact, action is a special servlet)
In action, request. setattribute ("RET", RET );
Only java. Lang. object can be accepted.
That is, list ret = (list) request. getattribute ("RET ");
If you only use JSP, request is not used at all. getattribute () request. getattribute () and request. the difference between getparameter () is request. getattribute () obtains the object type, while request. getparameter () obtains the string type.

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.