I have a problem while converting the spring check box tag to struts...
I have checkbox tag written in spring which i need to convert it into struts using the values comin
Migrating from SpringMVC(+JSTL) to Struts 2:
Spring MVC checkbox :
<form:checkbox/>
Struts 2 checkbox :
<s:checkbox/>
Spring MVC multiple checkboxes :
<form:checkboxes/>
Struts 2 multiple checkboxes :
<s:checkboxList/>
JSTL forEach :
<c:forEach>
Struts 2 Iterator :
<s:iterator>
JSTL WHEN and OTHERWISE:
<c:when>
<!-- stuff -->
</c:when>
<c:otherwise>
<!-- stuff -->
</c:otherwise>
Struts 2 IF and ELSE :
<s:if>
<!-- stuff -->
</s:if>
<s:else>
<!-- stuff -->
</s:else>