I have a simple question, got stucked on this for a few hours now...
#{bean.testVar eq 'AAA'}
<c:choose>
<c:when test="#{bean.testVar eq 'AAA'}">
TRUE
</c:when>
<c:otherwise>
FALSE
</c:otherwise>
</c:choose>
testVar is returning String "AAA", but on page I always see
true
FALSE
when I expect
true
TRUE
Any ideas what might be causing this? Thanks.