1

我有一个如下所示的导航规则:

<navigation-rule>
    <display-name>forgotPwd</display-name>
    <from-view-id>/login/forgotpwd.jsf</from-view-id>
    <navigation-case>
        <from-outcome>pass</from-outcome>
        <to-view-id>/login/pwdresetcomplete.xhtml</to-view-id>
    </navigation-case>
    <navigation-case>
        <from-outcome>fail</from-outcome>
        <to-view-id>/login/forgotpwd.xhtml</to-view-id>
    </navigation-case>
</navigation-rule>

所以我这样做是为了触发导航规则:

  • 导航/login/forgotpwd.jsf?uuid=fed8b3f7-ed33-4941-8306-3d2afbb8d1d0

此页面具有以下形式:

<h:form id="resetForm">
<!-- Omitting the login fields --> 
    <h:commandButton type="submit" id="resetPassword" value="Save" styleClass="btn small" action="#{registration.resetPassword}" >
        <f:param name="uuid" value="#{facesContext.externalContext.requestParameterMap.uuid}" />
    </h:commandButton>
</h:form>

(将 uuid 作为查询字符串参数传递,并将调用 registration.resetPassword 函数。)

这是registration.resetPassword java代码:

(为简洁起见省略了细节)

public String resetPassword() {
  // If good
  return "pass";
  // If bad
  return "fail"
}

问题:当它返回“通过”时,导航规则没有触发。它回到 /login/forgotpwd.jsf 而不是 /login/pwdresetcomplete.jsf

这是因为它附加了 UUID 参数吗?为什么我的导航没有触发?

是否有一些我可以触发的 log4j 日志记录来查看为什么这不起作用?

4

2 回答 2

1
<from-view-id>/login/forgotpwd.jsf</from-view-id>

from-view-id必须是视图 ID,而不是虚拟 URL 。因此,它不应包含.jsf扩展名。

<from-view-id>/login/forgotpwd.xhtml</from-view-id>

顺便说一句,请求参数在视图中可用#{param}。与 相比,这节省了一些字符#{facesContext.externalContext.requestParameterMap}

<f:param name="uuid" value="#{param.uuid}" />

另请参阅EL 中的隐式对象。另一个顺便说一句,您使用的是哪个 JSF 版本并不完全清楚,但自从 JSF 2.0(我猜您已经在使用 Facelets 时使用它)以来,您不再需要导航案例 XML 地狱了。您可以to-view-id直接从操作方法返回(相对和/或无扩展)。

public String resetPassword() {
  // If good
  return "pwdresetcomplete";
  // If bad
  return "forgotpwd"
}

这样你就可以摆脱整个<navigation-rule>. 另请参见隐式导航

于 2012-09-23T04:03:51.690 回答
0

我添加了这两个规则......现在它可以工作了。不确定是哪一个做的,但使用 from-action 让它更快乐。

<navigation-rule>
        <display-name>forgotPwd</display-name>
        <from-view-id>/login/forgotpwd.xhtml</from-view-id>
        <navigation-case>
            <from-action>#{registration.resetPassword}</from-action>
            <from-outcome>pass</from-outcome>
            <to-view-id>/login/pwdresetcomplete.xhtml</to-view-id>
        </navigation-case>
        <navigation-case>
            <from-action>#{registration.resetPassword}</from-action>
            <from-outcome>fail</from-outcome>
            <to-view-id>/login/forgotpwd.xhtml</to-view-id>
        </navigation-case>
    </navigation-rule>
    <navigation-rule>
        <display-name>forgotPwd</display-name>
        <from-view-id>/login/forgotpwd.jsf</from-view-id>
        <navigation-case>
            <from-action>#{registration.resetPassword}</from-action>
            <from-outcome>pass</from-outcome>
            <to-view-id>/login/pwdresetcomplete.xhtml</to-view-id>
        </navigation-case>
        <navigation-case>
            <from-action>#{registration.resetPassword}</from-action>
            <from-outcome>fail</from-outcome>
            <to-view-id>/login/forgotpwd.xhtml</to-view-id>
        </navigation-case>
    </navigation-rule>  
于 2012-09-22T21:19:15.390 回答