我认为此链接将帮助您设置要执行的操作:
http://viralpatel.net/blogs/spring-mvc-multi-row-submit-java-
list/
看起来您的表单中需要将其修改为:
<form:form method="post" action="savePerson" modelAttribute="persons"> <c:forEach var="person" items="${persons}" varStatus="status"> <form:input path="person[${status.index}].FName" name="FName" id="FName" value="" /> <form:input path="person[${status.index}].LName" name="LName" id="LName" value="" /> </c:forEach>


