PrimeFaces remoteCommand不会在错误页面中触发

时间:2017-03-23 06:04:35

标签: jsf primefaces jboss

当我尝试在错误页面中调用它时,为什么p:remoteCommand不会触发,但如果我将其作为错误页面删除它会起作用。我错过了配置吗?

的web.xml

<error-page>
    <error-code>404</error-code>
    <location>/errorPage.xhtml</location>
</error-page>
<servlet-mapping>
    <servlet-name>Faces Servlet</servlet-name>
    <url-pattern>*.xhtml</url-pattern>
</servlet-mapping>  

errorPage.xhtml

<h:form>
    <p:remoteCommand name="rCom1" actionListener="#{bean.method}" />
</h:form>

0 个答案:

没有答案