Bonjour, dans ma jsp j'ai une liste que je dois parcourir deux fois
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
 
<table>
 <tr>
  <th>TITLLE</th>
 </tr>  
 <tr class="row0"> 
  <logic:iterate id="listClient1"      name="Client">       
   <td>
    [...]
   </td>
  </logic:iterate>
 </tr>
</table>
 
<logic:iterate id="listClient2" name="Client">
 <table>
  <tr>
   <td>
    [...]
   </td>
  </tr>
 </table>
</logic:iterate>
Mais lorsque j'affiche ma page j'ai cette erreur

javax.servlet.jsp.JspException: Cannot create iterator for this collection