我一直在尝试缓存和处理viewExpiredexception
,如果抛出`viewExpiredexceptionviewExpiredexception,我编写了一个自定义的viewExpiredexception处理程序,它假定重定向到抛出异常的页面,我也插入boolean into session,用于在已删除的页面中显示“页面已刷新”消息。
以下是我的ViewExpiredException处理程序的相关部分:
public void handle() throws FacesException {
for (Iterator<ExceptionQueuedEvent> i = getUnhandledExceptionQueuedEvents().iterator(); i.hasNext();) {
ExceptionQueuedEvent event = i.next();
ExceptionQueuedEventContext context = (ExceptionQueuedEventContext) event.getSource();
Throwable t = context.getException();
if (t instanceof ViewExpiredException) {
ViewExpiredException vee = (ViewExpiredException) t;
FacesContext fc = FacesContext.getCurrentInstance();
Map<String, Object> requestMap = fc.getExternalContext().getRequestMap();
NavigationHandler nav = fc.getApplication().getNavigationHandler();
try {
requestMap.put("currentViewId", vee.getViewId());
HttpServletRequest orgRequest = (HttpServletRequest) fc.getExternalContext().getRequest();
fc.getExternalContext().redirect(orgRequest.getRequestURI());
Map<String, Object> sessionMap = FacesContext.getCurrentInstance().getExternalContext().getSessionMap();
sessionMap.put("refreshedMaxSesion",true);
fc.renderResponse();
}
catch(IOException e){ }
finally { i.remove(); }
}
}
// here queue will not contain any ViewExpiredEvents, let the parent handle them.
getWrapped().handle();
}
和导航案例
<navigation-rule>
<navigation-case>
<from-outcome>/app/ord1</from-outcome>
<to-view-id>/jsp/orderHist.jsp</to-view-id>
<redirect />
</navigation-case>
</navigation-rule>
我在上述方面取得了有限的成功,在某些情况下会有效,但在其他情况下,页面根本不会重定向。它主要用于chrome,但在IE中根本不起作用。
我尝试进行一些更改,例如使用
HttpServletResponse response = (HttpServletResponse) fc.getExternalContext().getResponse();
response.sendRedirect(vee.getViewId());
但我得到了500个错误页面,但View must Exists...
例外,所以我停止尝试找出我先做错了什么。如何解决将ViewExpiredException和Redirectign引回到抛出错误的页面的目标?
我在myFaces(2.1.7)和richFaces(3.3.3)上。谢谢
答案 0 :(得分:1)
在MyFaces社区中已经完成了一些工作,以优雅的方式处理ViewExpiredException。 MyFaces Core已解决了一些问题(请参阅MYFACES-3530和MYFACES-3531)也许您应该尝试使用最新的快照HERE。