Error of iterator in mys JSP
Posted
by Mercer
on Stack Overflow
See other posts from Stack Overflow
or by Mercer
Published on 2010-03-22T09:35:48Z
Indexed on
2010/03/22
9:41 UTC
Read the original article
Hit count: 334
Hello, in my jsp i do this
<table>
<tr>
<th>TITLLE</th>
</tr>
<tr class="row0">
<logic:iterate id="listClient" name="Client">
<td>
[...]
</td>
</logic:iterate>
</tr>
</table>
<logic:iterate id="listClient" name="Client">
<table>
<tr>
<td>
[...]
</td>
</tr>
</table>
</logic:iterate>
But i have this error for my second iterate
javax.servlet.jsp.JspException: Cannot create iterator for this collection
© Stack Overflow or respective owner