If I have a class with an
ArrayList<Person> names
in it. How do I implement a foreach in a jsp?
<c:foreach var="item" items="${what goes here??}"> ${item.title} </c:foreach>
|
|
|
The expression So, if you do in a servlet
And call this servlet by URL, then you'll be able to iterate over it in
The above is also equally valid when you put it in the session scope instead
or even in the application scope
|
|||||
|
|
|||||||||||
|
|
If you are using Servlets or action class for creating your list and then forwarding it to your JSP, then you must be having following line in your servlet or action class.
|
|||||||||
|