我在我的项目中使用JSF 2.0和Primefaces。
我有两个xhtml页面,即Cars.xhtml和Bikes.xhtml。
我正在使用ViewScoped的后台bean。
目前,如果从任何两个页面中获得视图过期异常,我在web.xml中处理它。通过error-page标签并指向welcome.xhtml.
现在如果我得到一个viewexpired异常从自行车.xhtml我需要直接到另一个页面是BikesHome.xhtml而不是welcome.xhtml.
如果异常来自Cars.xhtml,则应显示welcome.xhtml。
请告诉我怎么做。
我不是100%确定这一点(因为我自己没有尝试过),但这里是我的建议-查看JSF2中优雅地处理ViewExpiredException。
if (t instanceof ViewExpiredException) {
ViewExpiredException vee = (ViewExpiredException) t;
在这一点上,您可以得到view id
如下-
vee.getViewId();
然后基于view id
进行所需的导航。
NavigationHandler nh = facesContext.getApplication().getNavigationHandler();
//check condition, set view
nv.handleNavigation(facesContext, null, "/view-id?faces-redirect=true");
facesContext.renderResponse();
或者,我认为你也可以这样做-
FacesContext.getExternalContext().redirect(url);
FacesContext.responseComplete();
重定向的。