我有一个带Primefaces咆哮的JSF页面。我想在页面之间切换时发出明显的信息。这可能吗?
答案 0 :(得分:2)
在第二页bean的@PostConstruct方法(或构造函数)中,添加一个FacesMessage,例如:
context.addMessage(null, new FacesMessage("Growl Message", "Growl Message Text"));
答案 1 :(得分:0)
这是我的解决方案。它将在重定向之前显示当前页面中的msg。
HTML:
FlowLayout
豆:
<h:form prependId="false">
<p:growl />
<p:button outcome="gotoABC" id="rdr-btn" style="display: none;" />
<p:commandButton action="#{bean.process()}" update="@form" />
</form>