<c:if> 无法在 JSTL 中工作

<c:if> not working in JSTL

在我的 jsp 中,我尝试比较两个整数,但比较不适用于 c:if:

<c:set var="test" value="1" scope="request" />
<c:choose>
    <c:when test = "${test == 1}">
            it works
    </c:when>
</c:choose>
<c:if test="${test == 1} ">
   does not work        
</c:if>

把右括号后面多余的space去掉,那里应该没有space。

<c:if test="${test eq 1}">
   does not work        
</c:if>