<body>
<table border="1px">
<tr>
<th>学号</th>
<th>姓名</th>
<th>年龄</th>
<th>年级</th>
</tr>
<%
//获取request域中的数据
List<Student> students=(List<Student>)request.getAttribute("student");
for(Student student:students){
%>
<tr>
<td><%=student.getStuNo()%></td>
<td><%=student.getStuName()%></td>
<td><%=student.getStuAge()%></td>
<td><%=student.getGraName()%></td>
</tr>
<%
}
%>
</table>
</body>
报错
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…