I can access my model as returned by a Spring Controller in a jsp
<c:forEach items="${model.dataitems}" var="dataitem">
<c:out value="${dataitem.name}"/>
</c:forEach>
but not having much luck accessing it using Jsp expression tag instead
i.e
<%=model.dataitems.size()%>
Please, what do i have to do to get it working.


Reply With Quote