我正在尝试使用属性 autoUpdate 测试 p:growl 和 p:messages,但它不起作用,虽然它是一个非常简单的代码。
我的页面(primes.xhtml):
<h:head/>
<h:body>
<h:form>
<p:messages autoUpdate="true"/>
<p:commandButton action="#{dateBean.testErr}"/>
</h:form>
</h:body>
DateBean 类:
@ManagedBean
public class DateBean {
public String testErr(){
FacesContext context = FacesContext.getCurrentInstance();
context.addMessage(null, new FacesMessage("test error"));
return null;
}
}
每当我点击命令按钮时,服务器都会给我以下警告:
“警告:有一些未处理的 FacesMessage,这意味着并非每个 FacesMessage 都有机会呈现。这些未处理的 FacesMessage 是:- 测试错误”
但是页面中没有显示消息,咆哮也没有。