Я использую by . Эд Бернс предложил пользовательский обработчик исключений для отображения страницы ошибки при возникновении определенного исключения.Я также пытаюсь показать страницу ошибки, когда контекст не активен.Однако эта часть (строка 45./46.) Вызывает проблемы:
nav.handleNavigation(fc, null, "viewExpired");
fc.renderResponse();
Здесь приводится полный CustomExceptionHandler (настроен правильно, как предлагает Эд Бернс в своем блоге)
package com.sun.faces;
import java.util.Iterator;
import java.util.Map;
import javax.enterprise.context.ContextNotActiveException;
import javax.faces.FacesException;
import javax.faces.application.NavigationHandler;
import javax.faces.application.ViewExpiredException;
import javax.faces.component.UIViewRoot;
import javax.faces.context.ExceptionHandler;
import javax.faces.context.ExceptionHandlerWrapper;
import javax.faces.context.FacesContext;
import javax.faces.event.ExceptionQueuedEvent;
import javax.faces.event.ExceptionQueuedEventContext;
public class ViewExpiredExceptionExceptionHandler extends ExceptionHandlerWrapper {
private ExceptionHandler wrapped;
public ViewExpiredExceptionExceptionHandler(ExceptionHandler wrapped) {
this.wrapped = wrapped;
}
@Override
public ExceptionHandler getWrapped() {
return this.wrapped;
}
@Override
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 {
// Push some useful stuff to the request scope for
// use in the page
requestMap.put("currentViewId", vee.getViewId());
nav.handleNavigation(fc, null, "viewExpired");
fc.renderResponse();
} finally {
i.remove();
}
}
if (t instanceof ContextNotActiveException) {
FacesContext fc = FacesContext.getCurrentInstance();
NavigationHandler nav =
fc.getApplication().getNavigationHandler();
try {
nav.handleNavigation(fc, null, "contextNotActive");
fc.renderResponse();
} finally {
i.remove();
}
}
}
// At this point, the queue will not contain any exceptions I want to handle (for now).
// Therefore, let the parent handle them.
getWrapped().handle();
}
}
ОднакоЯ всегда получаю распечатку «вид не может быть визуализирован» в консоли.Так почему же он не рендерит эту страницу с ошибкой?Я предполагаю, что это вызвано неактивным контекстом (который используется NavigationHandler)!
Кто-нибудь может подтвердить это поведение?
PS: я использую Weld 1.1с мохаррой 2.0.4