Hi all,

I have an ActionBean which has the following field with its associated
getter and setter:
private List<MyObject> results;

The ArrayList is created and populated in the DefaultHandler method. Then, I
want to print the results list value in my JSP. The JSP file contains the
following lines:

<c:forEach items="${actionBean.results}" var="result">
<p>${result.myField}</p>
</c:forEach>

The MyObject instances contain a field myField with its associated getter
and setter. Moreover, when I add a sysout before to return the Resolution in
my DefaultHandler method I can see that my list contains several entries. My
issue is that nothing is print to the screen.

Does my JSP code is wrong?

Kind Regards,

Laurent
------------------------------------------------------------------------------
What Every C/C++ and Fortran developer Should Know!
Read this article and learn how Intel has extended the reach of its 
next-generation tools to help Windows* and Linux* C/C++ and Fortran 
developers boost performance applications - including clusters. 
http://p.sf.net/sfu/intel-dev2devmay
_______________________________________________
Stripes-users mailing list
Stripes-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/stripes-users

Reply via email to