11

我对 JSF 中的 h:messages 标记有疑问,它根本不显示任何消息。当我单击按钮时,在 Glassfish 日志中没有错误。设置如下:

测试.xhtml:

<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:p="http://primefaces.org/ui" 
    xmlns:j="http://primefaces.org/ui"
xmlns:f="http://java.sun.com/jsf/core">
<h:head>
    <title>test</title>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</h:head>
<h:body>
    <h:messages globalOnly="true"/>
    <h:form id="loginform">         
        <p:commandButton id="testButton" value="Test"
          action="#{loginSessionBean.test()}" />
    </h:form>
</h:body>
</html>

使用 SessionScopedBean:

@ManagedBean
@SessionScoped
public class LoginSessionBean implements Serializable {

private static final long serialVersionUID = 1L;
...
public String test(){
     FacesContext fc = FacesContext.getCurrentInstance();
     fc.addMessage(null, new FacesMessage(FacesMessage.SEVERITY_WARN, "Test!", null)); 
    return "";
}
4

1 回答 1

20

您正在使用 PrimeFaces 发送 ajax 请求<p:commandButton>。默认情况下,Ajax 请求没有任何形式的反馈(除非autoUpdate="true"在某处使用了 PrimeFaces')。您应该明确指定要在 ajax 响应上更新的视图部分。

一种方法是指定update属性 on<p:commandButton>以指向<h:messages>组件的客户端 ID。

<h:messages id="messages" ... />
<h:form>         
    <p:commandButton ... update=":messages" />
</h:form>

另一种方法是用 PrimeFaces 替换它,<p:messages>它具有autoUpdate用于自动更新 ajax 响应的属性。

<p:messages ... autoUpdate="true" />
<h:form>         
    <p:commandButton ... />
</h:form>

一个完全不同的替代方法是通过向按钮添加属性来关闭 ajax ajax="false",这样将执行同步回发,从而有效地导致整个页面更新,就像标准 JSF<h:commandButton>在不使用<f:ajax>.

<h:messages ... />
<h:form>         
    <p:commandButton ... ajax="false" />
</h:form>

也可以看看:

于 2013-04-23T18:24:46.037 回答