Servlet.service() for servlet jsp threw exception

<logic:iterate id="Auditlist" name="AuditList">
          <bean:define id="status" name="Auditlist" property="status"/>
        <tr>
          <td align="center" class="bgfill"> <bean:write name="Auditlist" property="platname"/></td>
          <td align="center" class="bgfill"><bean:write name="list" property="salesname"/></td>
          <td align="center" class="bgfill"><bean:write name="list" property="buddyname"/></td>
错误原因:循环中只定义了Auditlist,而其中误调用了list,导致list没有被定义而被使用的错误,这里应把list改为
Auditlist,方正确。

你可能感兴趣的:(jsp,servlet)