根据当前视图处理 ViewExpiredException
我在我的项目中使用 JSF 2.0 和 Primefaces。
我有两个 xhtml 页面,即 Cars.xhtml 和 Bikes.xhtml。
我正在使用 ViewScoped 支持 bean。
目前,如果从两个页面中的任何一个获取视图过期异常,我都会在 web.xml 中处理它。 通过错误页面标签并定向到welcome.xhtml。
现在如果我从 Bikes.xhtml 收到 viewexpired 异常 我需要定向到另一个页面,即 BikesHome.xhtml 而不是welcome.xhtml。
如果异常来自 Cars.xhtml,则应显示welcome.xhtml。
请帮我看看该怎么做。
I am using JSF 2.0 and Primefaces in my project.
I have two xhtml pages namely Cars.xhtml and Bikes.xhtml.
I am using ViewScoped backing beans.
Currently If get view expired exception from any of the two pages,im handling it in the web.xml.
through the error-page tag and directing to welcome.xhtml.
Now If i get a viewexpired exception from Bikes.xhtml
I need to direct to another page which is BikesHome.xhtml instead of welcome.xhtml.
If the exception is from Cars.xhtml, welcome.xhtml should be shown.
Please help me how to do.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我对此不是 100% 确定(因为我自己还没有尝试过),但这是我的建议 -
请查看在 JSF2 中优雅地处理 ViewExpiredException。
此时您可以按如下方式获取
view id
-然后根据
view id
进行所需的导航。或者,我认为你也可以这样做 -
重定向。
I not 100% sure about this (because I haven't tried it myself) but here is my suggestion for -
Check this out Dealing Gracefully with ViewExpiredException in JSF2.
At this point you can get the
view id
as follows -And then based on the
view id
do the desired navigation.Or, I think you could also do -
to redirect.