The difference between type and class in Jsp:usebean

Source: Internet
Author: User

<jsp:usebean id= "Mybean" class= "package. Mybean "scope=" Request "></jsp:useBean>

<jsp:usebean id= "Mybean" class= "package. Mybean "scope=" Request "></jsp:useBean>

In both of these usages, when Mybean is not empty, there is no difference between the two in use. But when Mybean is set to NULL, such as Request.setattribute ("Mybean", null), there is a difference between the two in use. Use the class= "package. Mybean "does not throw an exception, use the Type=" package. Mybean "will throw an exception. The reason is that when you use class, you first look for the existence of a mybean within the current scope, if it exists, use the ready-made, or new one if it does not exist. When using type, an exception is thrown if Mybean is not present in the current scope and the type is not specified using either class or Beanname. and class and Beanname must specify the package (that is, the packet is introduced), and the type can not be specified.

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.