2

我正在使用 Primefaces 3.4.1、Jboss AS 7.1 和 MyFaces CODI 编写应用程序。我遇到的问题是我正在使用 CODI 提供的对话范围,一旦对话结束,我需要一种方法来处理浏览器的后退按钮。

更准确地说 - 当对话结束并且用户在不同的页面上时(想想它就像一个向导完成并提交到数据库)如果按下后退按钮我收到以下异常:

javax.ejb.EJBTransactionRolledbackException

理想情况下,由于对话已完成,我希望将其重定向回其他页面(菜单、仪表板)。

这可以通过 JSF 2.0 导航规则来完成吗?

编辑:

我创建了这样的导航规则:

<navigation-rule>
    <from-view-id>/page1.xhtml</from-view-id>
        <navigation-case>
            <from-outcome>outcome1</from-outcome>
            <to-view-id>/page2.xhtml</to-view-id>
            <redirect/>
        </navigation-case>
        <navigation-case>
            <from-outcome>*</from-outcome>
            <to-view-id>/dashboard.xhtml</to-view-id>
            <redirect/>
        </navigation-case>
</navigation-rule>

如果我们按下后退按钮,希望这将重定向到dashboard.xhtml。我假设当您按下它时,后端会触发不同的操作。显然我假设错了。有什么方法可以使用这些案例捕获 bakc 按钮发送的任何内容吗?可能带标签?

更新 1:

显然浏览器的后退按钮不会触发 JSF 导航案例。是否清楚它会触发什么?我实现了以下过滤器:https : //stackoverflow.com/a/10305799/1611957 它现在会触发什么?这会让捕捉它的工作变得更容易吗?

4

3 回答 3

4

我终于设法解决了这个问题,它可能对其他人有帮助:

首先要做的是确保您没有缓存页面。您可以使用此处说明的过滤器来执行此操作:

https://stackoverflow.com/a/10305799/1611957

之后,您将知道该页面将被呈现,因此您需要在呈现之前检查您的对话 bean 是否正确实例化。此处解释了如何进行此类检查:

https://stackoverflow.com/a/7294707/1611957

我使用的代码类似于 BalusC 在这个问题中发布的代码:

<f:metadata>
    <f:event type="preRenderView" listener="#{authenticator.check}" />
</f:metadata>

使用java代码:

public void check() {
    if (someCondition) {
        FacesContext facesContext = FacesContext.getCurrentInstance();
        NavigationHandler navigationHandler =
            facesContext.getApplication().getNavigationHandler();
        navigationHandler.handleNavigation(facesContext, null, "outcome");
    }
}

这样,您将为“结果”分派 JSF 导航规则

<navigation-rule>
    <from-view-id>*</from-view-id>
    <navigation-case>
        <from-outcome>outcome</from-outcome>
        <to-view-id>/defaultPage.xhtml</to-view-id>
        <redirect/>
    </navigation-case>
</navigation-rule>

这就是您可以使用 JSF2 优雅地处理后退按钮的方式。

于 2012-10-26T12:51:26.540 回答
1

我们正在使用@ConversationRequired。

于 2012-10-28T20:09:26.887 回答
-1
This worked for me.
You can add the below code in between your <head> </head> tag

<script>
    window.location.hash = "no-back-button";
    window.location.hash = "Again-No-back-button";//again because google chrome don't insert first hash into history
    window.onhashchange = function() {
        window.location.hash = "no-back-button";
    }
</script>
于 2020-10-05T09:26:19.707 回答