我正在开发一个基于JSF 2.0的Web应用程序。我正在尝试实现一个全局异常处理程序,它会在发生任何异常时将用户重定向到一般错误页面(例如NullPointerException,ServletException,ViewExpiredException等)。
每当我的应用程序中出现NPE时,我的customnavhandler断点被点击并且执行了NavigationHandler代码,但不知何时重定向到错误页面,请求的页面仍然部分呈现。知道这里有什么不对吗?一个信息是我故意在所请求的页面上抛出一个NPE(在NPE之后部分呈现)
我的faces-config.xml条目
<factory>
<exception-handler-factory>
com.common.exceptions.CustomExceptionHandlerFactory
</exception-handler-factory>
</factory>
我的CustomNavHandler
public class CustomExceptionHandler extends ExceptionHandlerWrapper {
private static final Logger logger = Logger.getLogger("com.gbdreports.common.exception.CustomExceptionHandler");
private final ExceptionHandler wrapped;
public CustomExceptionHandler(ExceptionHandler wrapped) {
this.wrapped = wrapped;
}
@Override
public ExceptionHandler getWrapped() {
return this.wrapped;
}
public void handle() throws FacesException {
final Iterator<ExceptionQueuedEvent> i = getUnhandledExceptionQueuedEvents().iterator();
while (i.hasNext()) {
ExceptionQueuedEvent event = i.next();
ExceptionQueuedEventContext context =
(ExceptionQueuedEventContext) event.getSource();
// get the exception from context
Throwable t = context.getException();
final FacesContext fc = FacesContext.getCurrentInstance();
final ExternalContext externalContext = fc.getExternalContext();
final Map<String, Object> requestMap = fc.getExternalContext().getRequestMap();
final ConfigurableNavigationHandler nav = (ConfigurableNavigationHandler) fc.getApplication().getNavigationHandler();
//here you do what ever you want with exception
try {
//log error ?
logger.error("Severe Exception Occured");
//log.log(Level.SEVERE, "Critical Exception!", t);
//redirect error page
requestMap.put("exceptionMessage", t.getMessage());
nav.performNavigation("/TestPRoject/error.xhtml");
fc.renderResponse();
// remove the comment below if you want to report the error in a jsf error message
//JsfUtil.addErrorMessage(t.getMessage());
}
finally {
//remove it from queue
i.remove(); }
}
//parent hanle
getWrapped().handle();
}
}
我的customNavhandler工厂
public class CustomExceptionHandlerFactory extends ExceptionHandlerFactory {
private ExceptionHandlerFactory parent;
public CustomExceptionHandlerFactory(ExceptionHandlerFactory parent) {
this.parent = parent;
}
@Override
public ExceptionHandler getExceptionHandler() {
return new CustomExceptionHandler (parent.getExceptionHandler());
}
}
答案 0 :(得分:14)
这很可能是因为当前请求是ajax(异步)请求。您在那里的异常处理程序是为常规(同步)请求而设计的。
在ajax异常情况下更改视图的正确方法如下:
String viewId = "/error.xhtml";
ViewHandler viewHandler = context.getApplication().getViewHandler();
context.setViewRoot(viewHandler.createView(context, viewId));
context.getPartialViewContext().setRenderAll(true);
context.renderResponse();
然而,这有些天真。如果在呈现ajax响应的过程中抛出了ajax异常,这将不起作用。
我建议不要重新发明轮子。 JSF实用程序库OmniFaces具有FullAjaxExceptionHandler
风格的完整工作解决方案。您可以找到完整的源代码here和展示示例here。它使用<error-page>
中的标准servlet API web.xml
声明。这样,错误页面也可以重复用于同步请求,只需要FacesExceptionFilter
的帮助,也可以由OmniFaces提供。
答案 1 :(得分:0)
处理ajax和非ajax请求异常的统一方法可以简化代码。而不是
requestMap.put("exceptionMessage", t.getMessage()); nav.performNavigation("/TestPRoject/error.xhtml"); fc.renderResponse();
足以使用:
fc.getExternalContext().redirect("/TestPRoject/error.xhtml");