在面板标题中格式化日期

Format date in title of a panel

如何在 BootsFaces 中将日期格式化为面板的标题?

<b:panel title="#{bean.date}">
    content
</b:panel>

实际上我的日期显示如下:2016-05-14 12:00:00.0

我可以在不通过 Java 预先格式化日期的情况下实现吗?

BootsFaces 没有日期格式化程序,但有一个不错的 OmniFaces 函数可供您使用:

<b:panel title="#{of:formatDate(bean.date, 'dd.MM.yyyy')}">
   content
</b:panel>