我的jsp文件中有这段代码:
<body>
<c:if test="${!isActivityVP && isBuy && isOwner}">
Hello
</c:if>
</body>
isActivityVP
和isBuy
都是isOwner
布尔值
但是,当我访问该页面时,我在 html 中得到了这个:
<body>
<c:if test="false">
Hello
</c:if>
</body>
这里有什么问题?