I have the following code:
    <logic:iterate id="paymean" name="JstSelectPaymentInfoForm" property="barsOption.list" collection= indexId="barInd" type="com.amdocs.css.jst.singleorder.checkout.view.JstPaymentInfoBar">
        <%
            if(barInd!=sizeOftheList-1)){
                          .
                          . 
                          .
            }
        %>
I want that instead of sizeOftheList, I'll have an expression that will give me the size of the list that I am iterating over.
I am using JSP scriptlets and struts
 
     
     
    