<table align="center"> <tr> <td>ID</td> <td>Role Name</td> </tr> <c:forEach items="${roleList}" var="role"> <tr> <td><form:checkbox path="roles" value="${role}" label="${role.id}" /></td> <td><c:out value="${role.name}" /></td> </tr> </c:forEach> </table>
<from:checkboxes> 标签中的items 只能是数组、list<String> 、map
SpringMvc 中绑定 checkbox 标签到form 中的List
原文:http://www.cnblogs.com/leonkobe/p/6214235.html