stuCounts是一个Map<Long,Integer>类型的数据结构
stuCounts.put(classId, count);//通过班级Id来求得班级人数。
<s:iterator value="classes" var="classinfo">
<tr>
<th scope="row"> <s:property value="#classinfo.class_id"/></th> //这里使用的是OGNL表达式
<td class="alt"> <s:property value="#classinfo.class_name"/></td>
<td class="alt"> <s:property value="stuCounts['09']"/></td> //问题就在这里,我想让'09'这个位置是一个当前classid的这么一个变量存放在里面,stuCounts是OGNL表达式,应该怎么做?求高人指点!
</tr>