我是Spring MVC的新手,希望有人能帮助我弄清楚这个问题。我有这样的jsp:
<table border="1">
<tr>
<td width="50">Id</td>
<td width="150">First Name</td>
<td width="150">Last Name</td>
<td width="50">Money</td>
<td width="50"></td>
</tr>
<c:forEach items="${persons}" var="person">
<tr>
<td><c:out value="${person.id}" /></td>
<td><c:out value="${person.firstName}" /></td>
<td><c:out value="${person.lastName}" /></td>
<td><c:out value="${person.money}" /></td>
<td colspan="2"> <a href="<c:url value="removeContact" />">Delete</a></td>
</tr>
</c:forEach>
</table>
当用户点击删除链接时,我想将整个对象(人)传递给控制器。有人可以帮忙,我该怎么做?我将不胜感激。
这是我的控制者:
@RequestMapping(value = "/removeContact", method = RequestMethod.GET)
public String removeContact(@ModelAttribute("contact")Person person, BindingResult result) {
System.out.println("============ > "+person.getId());
return "index.jsp";
}
由于