我有一个如下所示的导航规则:
<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 日志记录来查看为什么这不起作用?