我从数据库中获取值 0 和 1,我想在我的 jsp 页面中比较该值,我尝试了下面的代码,但它没有正确比较。
<c:choose>
<c:when test="%{#groupProfileView.userinfo. profilePrivacy}== 1">
creator name: ${groupProfileView.userinfo.firstName}
</c:when>
<c:otherwise>anonmous</c:otherwise>
</c:choose>