为什么不为每个项目使用单独的表格?
<c:forEach items="${model.availableitems}" var="item"> <form:form method="post" commandName="myCommand"> <span >${item.description}</span> <input type="hidden" name="id" value="${item.ID}"/> <input type="submit" name="SelectButton" value="Select" /> </form:form> </c:forEach>


