Skip to Main Content

Java EE (Java Enterprise Edition) General Discussion

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

ClassNotFoundException: javax.servlet.jsp.jstl.core.LoopTagStatus

tahirrazaDec 11 2009 — edited Dec 29 2009
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.
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jan 26 2010
Added on Dec 11 2009
15 comments
4,916 views