logger.debug("Forwarding to {}", path);
request.getRequestDispatcher(path).forward(request, response);
return null;
} catch (InvocationTargetException e) {
propagateIfPossible(e.getCause());
throw new ProxyInvocationException(e);
} catch (Exception e) {
throw new ProxyInvocationException(e);
}
}
});
}