I have this code in my jsp file:
<body>
<c:if test="${!isActivityVP && isBuy && isOwner}">
Hello
</c:if>
</body>
isActivityVP and isBuy and isOwner are all boolean values
when I visit the page, however, I got this in the html:
<body>
<c:if test="false">
Hello
</c:if>
</body>
What’s wrong here?
You need to include
jstlxxx.jarintoWEB-INF/liband add<%@ taglib %>directive in JSP page.