当我尝试在错误页面中调用它时,为什么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>