In my JSP I want to include another page if a certain condition is true. So far, I have this:
<c:choose>
<c:when test="'tru2e'=='true'">
<div id="tab2" class="tab-pane">
<jsp:include page="somestuff.jsp" />
</div>
</c:when>
<c:otherwise></c:otherwise>
</c:choose>
The issue that I'm running into (not even sure if I'm doing this right in the first place), is that even though true2e is not equal to true, it's still including the jsp. What am I missing?