我想在我的网页上添加一个条件,以检查检索到的值是否为null或其他值:
xhtml语言
<div id="topbarMsg" class="topbar-msg">
<c:if value="#{Bean.loginCustomer}" test = EMPTY>
<h:outputFormat id="welId" value="#{msg['label.welcome']} ">
</h:outputFormat>
<c:if test = NOT EMPTY>
<h:outputFormat id="welId" value="#{msg['label.welcomeUser']} ">
<f:param id="paramOneId" value="First Name" />
</div>
java bean
private Customer loginCustomer;
public final Customer getLoginCustomer() {
return loginCustomer;
}
从上面的代码中,它将检查名字是否为空,并从那里调用适当的标签以在网页中打印,但似乎不起作用。任何人