<%! int x=5; %>
<c:choose>
<c:when test="${x eq 5}"><p>hello1</p></c:when>
<c:when test="${x gt 10}"><p>}hello3</p></c:when>
<c:otherwise>Value is ${x},Not hello</c:otherwise>
</c:choose>
为什么上面的代码从我的 jsp 页面给出 not hello 的输出?为什么它没有给出 hello1 作为输出?