All,
I'm pulling my hair out try to figure out iterating. The code below does
not iterate through an ArrayList like I'd like it to.
<jsp:useBean id="general" scope="application"
class="com.razorfront.corporate.global.General"/>
<jsp:useBean id="service" scope="page"
class="com.razorfront.corporate.global.Service"/>
...
...
<logic:iterate id="service" name="general" property="services">
<bean:write name="service" property="serviceName" filter="true"/>
</logic:iterate>
In the application scope bean referenced as "general", I have a populated
ArrayList of "service" objects. The "general" bean has a private ArrayList
with a getter method called "getServices". I verified in the page that the
getServices method returns an ArrayList with a size of 11 and I can write a
scriplet to iterate through the list.
If anybody could point out to me what I'm doing wrong, it would be greatly
appreciated.