设置jsp Usebean对象购物车

时间:2018-11-16 08:04:08

标签: java html jsp netbeans usebean

<jsp:useBean id="Cart" class="com.SaveCart.Cart" scope="application"></jsp:useBean>
<jsp:setProperty property="ProductQuantity" name="ProductQuantity" value="<%= (ProductQuantity) %>"/> 
<jsp:setProperty property="ProductName" name="ProductName" value="<%= (ProductName) %>"/>
<jsp:setProperty property="ProductPrice" name="ProductPrice" value="<%= (ProductPrice) %>"/>
<jsp:getProperty name="ProductName" property="ProductName"/>
<jsp:getProperty name="ProductPrice" property="ProductPrice"/>
<jsp:getProperty name="ProductQuantity" property="ProductQuantity"/> 

在jsp usebean对象中设置产品名称,产品价格和数量时,将引发错误nullpointerexception。并且产品价格,产品名称和产品数量中的数据根本不是null,但是在设置jsp usebean对象时,它会显示空指针。

Occurence

Product quantity

NullPointerException

0 个答案:

没有答案