ContactController
我在类文件中有以下方法
public ModelAndView listContacts() {
return new ModelAndView("contact", "contact", contactService.listContact());
}
我在 JSP 中迭代这个列表:
<c:if test="${!empty contact}">
<table class="data">
<tr>
<th>Name</th>
<th>Email</th>
<th>Telephone</th>
<th> </th>
</tr>
<c:forEach items="${contact}" var="contact">
<tr>
<td>${contact.lastName}, ${contact.firstName}</td>
<td>${contact.email}</td>
<td>${contact.telephone}</td>
<td><a href="delete/${contact.id}">delete</a></td>
</tr>
</c:forEach>
</table>
但我收到以下错误:
org.springframework.beans.NotReadablePropertyException:bean 类 [java.util.ArrayList] 的无效属性“firstName”:Bean 属性“firstName”不可读或具有无效的 getter 方法:getter 的返回类型是否与参数类型匹配二传手?