页面本身的 JSF 导航规则

发布于 2024-10-19 17:41:20 字数 57 浏览 1 评论 0原文

如何定义从 #{current.doLogout} 到同一视图 ID 的所有视图 ID 的导航规则?

How can I define a navigation rule from all view-ids from #{current.doLogout} to the same view-id?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

爱给你人给你 2024-10-26 17:41:20

您需要使用通配符来实现这一点

只需调用action标签中的logout方法即可。并将其添加到您的 faces-config.xml 中

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

You need to use wildcards to achieve this

Just call the logout method in action tag. and just add this to your faces-config.xml

<navigation-rule>
 <from-view-id>*</from-view-id>
<navigation-case>
<from-outcome>welcome</from-outcome>
<to-view-id>/login.xhtml</to-view-id>
<redirect/>
</navigation-case>
</navigation-rule>
盛夏尉蓝 2024-10-26 17:41:20

如果您未定义任何内容或在操作方法中返回 nullvoid,则默认情况下它将显示与提交表单的页面相同的页面。

public void doLogout() {
    // Logout.
}

这样您就不需要在faces-config.xml 中摆弄导航案例。 顺便问一下,您是否已经了解新的 JSF 2.0“隐式导航”功能?

If you don't define any or return null or void in action method, it will by default display the same page as where the form is been submitted.

public void doLogout() {
    // Logout.
}

This way you don't need to fiddle with navigation cases in faces-config.xml. Are you by the way already aware of the new JSF 2.0 "implicit navigation" feature?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文