根据当前视图处理ViewExpiredException

时间:2011-09-27 17:19:40

标签: jsf jsf-2 primefaces viewexpiredexception

我在项目中使用JSF 2.0和Primefaces。

我有两个xhtml页面,即Cars.xhtml和Bikes.xhtml。

我正在使用ViewScoped支持bean。

目前如果从两个页面中的任何一个获取视图过期异常,我将在web.xml中处理它。 通过error-page标签并指向welcome.xhtml。

现在如果我从Bikes.xhtml获得一个viewexpired异常 我需要指向另一个页面,它是BikesHome.xhtml而不是welcome.xhtml。

如果异常来自Cars.xhtml,则应显示welcome.xhtml。

请帮我怎么做。

1 个答案:

答案 0 :(得分:8)

我不是100%肯定这个(因为我自己没有尝试过)但是这是我的建议 - 请查看Dealing Gracefully with ViewExpiredException in JSF2

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();

重定向。