【问题标题】:Not able to capture the session timeout error for RichFaces 4 a4j:commandButton with JSF2无法使用 JSF2 捕获 RichFaces 4 a4j:commandButton 的会话超时错误
【发布时间】:2015-11-29 19:54:12
【问题描述】:

我在我的 xhtml 页面中使用了 a4j:commandButton。它工作正常。但是在会话超时之后,我可以单击该按钮,但它没有击中支持 bean 的操作方法。我想向用户显示会话已过期。我已经关注了richfaces 网站中的材料,但不知道为什么它不起作用。我将会话超时设置为 1 分钟来测试场景。

web.xml:

<servlet>
    <servlet-name>Faces Servlet</servlet-name>
    <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
    <servlet-name>Faces Servlet</servlet-name>
    <url-pattern>/faces/*</url-pattern>
</servlet-mapping>
    <context-param>
        <param-name>org.ajax4jsf.handleViewExpiredOnClient</param-name>
        <param-value>true</param-value>
    </context-param>
<session-config>
    <session-timeout>1</session-timeout>
</session-config>

Javascript:

<h:head>
    <!-- (...) -->
    <script type="text/javascript">
        A4J.AJAX.onError = function(req, status, message){
            window.alert("Custom onError handler "+message);
    }
    </script>
</h:head>

xhtml:

<a4j:commandButton id="submitButton"
        value="Remediate Data" 
        action="#{addressManagedBean.submit}"
        onclick="return confirm('Are You Sure?')"
        styleClass="button-style" render="successMessage failureMessage infoMessage validationTMPMessage validationBOMessage">
</a4j:commandButton>
<a4j:log></a4j:log>

日志:

info [01:16:08.428]: Received 'begin' event from <input id=form12:submitButton class=button-style ...>
info [01:16:08.740]: Received 'beforedomupdate' event from <input id=form12:submitButton class=button-style ...>
info [01:16:08.740]: Element error
<error><error-name>class javax.faces.application.ViewExpiredException</error-name><error-message><![CDATA[viewId:/remediateData.xhtml - View /remediateData.xhtml could not be restored.]]></error-message></error>
error[01:16:08.740]: Received 'error@serverError' event from <input id=form12:submitButton class=button-style ...>
error[01:16:08.740]: [200] class javax.faces.application.ViewExpiredException: viewId:/remediateData.xhtml - View /remediateData.xhtml could not be restored.
info [01:16:08.740]: Received 'complete' event from <input id=form12:submitButton class=button-style ...>

我怎样才能实现我的目标?

【问题讨论】:

标签: ajax jsf-2 richfaces session-timeout


【解决方案1】:

这适用于 JSF 2.1.28

<h:body>
<script language="javascript">
    jsf.ajax.addOnError(function(data) {
         alert('Error');
    });
</script>

[...]

我将我的脚本放在正文部分。

【讨论】:

    【解决方案2】:

    此问题已修复。我使用了 jsf onError 和 onEvent javascript 方法。

    http://javaevangelist.blogspot.in/2014/01/jsf-2x-tip-of-day-custom-jsf-ajax-error.html

    【讨论】:

      猜你喜欢
      • 2021-03-08
      • 2015-03-30
      • 1970-01-01
      • 2014-10-30
      • 1970-01-01
      • 1970-01-01
      • 2011-02-20
      • 2014-02-06
      • 1970-01-01
      相关资源
      最近更新 更多