为什么在jsp的for循环中出现错误?

时间:2019-06-11 08:25:44

标签: jsp

这是我的错误:

  

在路径为[/ WebApp]的上下文中,用于servlet [jsp]的Servlet.service()引发了异常[在第24行处理JSP页面/homepage.jsp时发生了异常

<table align="center">
<tr>
<th>姓</th>
<th>名</th>
</tr>
<tr>
<th>メールアドレス</th>
</tr>
<%
List<AddressBean> addressList = (List<AddressBean>)request.getAttribute("addressList");
**for (AddressBean ab : addressList) {**
%>
<tr>
<td><%=ab.getLastName()%></td>
<td><%=ab.getFirstName()%></td>
<td><%=ab.getEmail()%></td>
</tr>
<%
}
%>
</table>

0 个答案:

没有答案