在我的jsp中,我有以下Spring复选框元素:
<c:forEach var="a" items="${accountList}">
<tr>
<td width="5%">
<div align="center"><form:checkbox path="$primaryAccountId" disabled="true"
value="${a.accountId}" onclick="someFunction()" /></div>
我的模型类中的primaryAccountId
现在是List<Long>
。所以我在想春天是如何决定是否在页面加载,是否应该选中复选框?
答案 0 :(得分:-2)