我有一个forEach循环,总是循环不出来内容
 System.out.println(request.getParameter("siteid"));
if(request.getParameter("siteid") != null){
ColumnAction caction = new ColumnAction();
List list = new ArrayList();
Integer nodeid = Integer.parseInt(request.getParameter("siteid"));
Object object[] = new Object[1];
object [0] = nodeid;
list = caction.getColumnInformaction(object);
 %>
<table width="600px" align="center" cellpadding="0" cellspacing="0"
border="1">
<tr>
<td width="200px" align="center">节点编号</td>
<td width="200px" align="center">节点名称</td>
<td width="200px" align="center">上级节点名称</td>
</tr>
<c:forEach items="${requeScope.list}" var="i">
<tr>
<td width="200px" align="center">${i.c_nodeid}</td>
<td width="200px" align="center">${i.c_nodename}</td>
<td width="200px" align="center">${i.c_upnodename</td>
</tr>
</c:forEach>
                 </table>
list是我上面调用方法返回的,大伙看一下有什么错误,请给指正,items="${list}"这一个属性去掉requestScope也是一样的,断点调试后发现根本不进循环。