<c:forEach> not recognized anymore after migration JSF 1.2 to JSF 2.2
问题 I am upgrading my application from JSF 1.2 to JSF 2. I am trying a below simple forEach tag but it not showing anything inside the loop. <table id="tab${sectionId}" border="0" cellpadding="0" cellspacing="0" width="100%" class="listingTable" > <c:forEach var="row" rowStatus="index" items="#{bean.department.userActivities}" > <tr> <td> test </td> </tr> </c:forEach> </table> The value test is not showing up. Has the c:forEach implementaion changed? I tried replacing with but has some other