el - Break method in JSTL -
does jstl suuports break method?i search on web , didn't found answer.is possible tou this:
<c:if test="${fn:contains(data, 'apple')}"> <break> </c:if>
jstl not support break statment or tag, unless until version 1.1. can see list of tags , functions in doc page.
you have play boolean variable in test condition archive similar behaviour.
Comments
Post a Comment