Primefaces commandButton do not call the bean



我在ui:composition中有一个菜单栏。命令按钮应该调用bean方法来注销,但是它失败了。

代码如下所示(该页是header.xhtml):

<ui:composition xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:p="http://primefaces.org/ui">
  <h:form id="headerForm">
    <p:menubar>
        <f:facet name="options">
            <h:outputText value="#{bean.helloMessage}"/>
            <p:spacer width="5"/>
            <p:commandButton type="button" value="Logout" icon="ui-icon-extlink"
                             style="font-size: 16px;"
                             action="#{bean.doLogout()}"/>
        </f:facet>
    </p:menubar>
 </h:form>
</ui:composition>

注意,我调用的bean是会话作用域的,并且是实例化的。

调用该组件的xhtml页面如下所示

<h:body>
<div id="header">
    <ui:insert name="header" >
        <ui:include src="/common/header.xhtml" />
    </ui:insert>
</div>
<div id="body">
    <ui:insert name="body">
        <div id="menu">
            <ui:insert name="menu">
                <ui:include src="/common/menu.xhtml" />
            </ui:insert>
        </div>
        <div id="content">
            <ui:insert name="content" />
        </div>
    </ui:insert>
</div>
</h:body>

内容中也有一个表单。你能帮我一下吗:)谢谢

Primefaces version 5.0face version 2.1.11

<p:commandButton value="Logout" icon="ui-icon-extlink"
                             style="font-size: 16px;"
                             action="#{bean.doLogout()}"/>

必须删除属性类型,这是工作:)

相关内容

  • 没有找到相关文章

最新更新