I am setting status property as true
in the background but still check box not checked:
JSP:
<c:forEach var="list" items="${someFormList}" varStatus="status">
<tr>
<td>
<form:checkbox path="status" items="${list.status}" />
</td>
</tr>
</c:forEach>
Controller:
model.addObject("someFormList", someFormList);