页面本身的 JSF 导航规则
如何定义从 #{current.doLogout} 到同一视图 ID 的所有视图 ID 的导航规则?
How can I define a navigation rule from all view-ids from #{current.doLogout} to the same view-id?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要使用通配符来实现这一点
只需调用action标签中的logout方法即可。并将其添加到您的 faces-config.xml 中
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
如果您未定义任何内容或在操作方法中返回
null
或void
,则默认情况下它将显示与提交表单的页面相同的页面。这样您就不需要在faces-config.xml 中摆弄导航案例。 顺便问一下,您是否已经了解新的 JSF 2.0“隐式导航”功能?
If you don't define any or return
null
orvoid
in action method, it will by default display the same page as where the form is been submitted.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?