In JSF2, writing facelets I tried to use <ui:repeat> tag instead of <c:forEach> - JSTL tag.
I get -> java.lang.ClassNotFoundException: javax.servlet.jsp.jstl.core.LoopTagStatus
Here is my facelet snippet ...
<ui:repeat value="#{historyCenterManagedBean.purchases}" var="order" >
<tr>
<td>
#{order.totalPriceBeforeDiscounts}:
</td>
<td>
#{order.person.firstname}
</td>
</tr>
</ui:repeat>
I am not sure why am I getting it. Any help is appreciated.