如何在facet中显示JSF Bean的值?

时间:2017-04-28 10:27:34

标签: jsf facet

我创建了一个带有标题,内容和页脚的小弹出对话框。

现在我想使用我的JSF bean从数据库中获取一些信息,以显示谁是编辑此帐户的最后一个人。

这就是我所做的:

<f:facet name="footer">
  <h:panelGroup layout="block" style="display:block; ">
    <h:outputText class="customerVieFooter" value="Created at "/>
    <h:outputText class="customerVieFooter" value="#{customerController.customer.createdAt}">
      <f:convertDateTime pattern="dd.MM.yyyy" />
    </h:outputText>
  </h:panelGroup>
</f:facet>

当我运行这个时,我只是得到第一个outputText,因为第二个似乎没有得到值。

如何解决此问题?

0 个答案:

没有答案