ContactUs

Please send your Questions & Answers or Feedback to "mohan@javabook.org"

What is the use of "logic:iterate"?


<logic:iterate> repeats the nested body content of this tag over a specified collection.

<table border=1>
  <logic:iterate id="customer" name="customers">
    <tr>
      <td><bean:write name="customer" property="firstName"/></td>
      <td><bean:write name="customer" property="lastName"/></td>
      <td><bean:write name="customer" property="address"/></td>
   </tr>
  </logic:iterate>
</table>
Related Posts Plugin for WordPress, Blogger...
Flag Counter