<%! 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を出力として与えていないのですか?