How to set a list from code?
I just started teaching myself JSTL and I really do not know what to search for, so I will just explain what I am trying to accomplish.
I have a class with static methods that retrieves objects from a pooled database connection and I simply want to iterate over the list using JSTL.
<c:set value="${param.url}" scope="page" var="url" />
<c:set value="what to put here?" var="urls" /> <!-- i want the variable urls to be populated by PersistencyManager.getURLs(url); -->
<c:forEach var="info" items="${urls}">...</c:forEach>
Any help is appreciated.

