Class ErrorPageErrorHandler
java.lang.Object
org.eclipse.jetty.util.component.AbstractLifeCycle
org.eclipse.jetty.util.component.ContainerLifeCycle
org.eclipse.jetty.ee9.nested.AbstractHandler
org.eclipse.jetty.ee9.nested.ErrorHandler
org.eclipse.jetty.ee9.servlet.ErrorPageErrorHandler
- All Implemented Interfaces:
ErrorHandler.ErrorPageMapper, Handler, Container, Destroyable, Dumpable, Dumpable.DumpableContainer, LifeCycle
An ErrorHandler that maps exceptions and status codes to URIs for dispatch using
the internal ERROR style of dispatch.
-
Nested Class Summary
Nested classes/interfaces inherited from class ErrorHandler
ErrorHandler.ErrorPageMapperNested classes/interfaces inherited from class AbstractHandler
AbstractHandler.ErrorDispatchHandlerNested classes/interfaces inherited from class AbstractLifeCycle
AbstractLifeCycle.AbstractLifeCycleListener, AbstractLifeCycle.StopExceptionNested classes/interfaces inherited from interface Container
Container.InheritedListener, Container.ListenerNested classes/interfaces inherited from interface Dumpable
Dumpable.DumpableContainerNested classes/interfaces inherited from interface LifeCycle
LifeCycle.Listener -
Field Summary
FieldsFields inherited from class ErrorHandler
ERROR_CHARSET, ERROR_CONTEXT, ERROR_PAGE -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidaddErrorPage(int from, int to, String uri) Adds ErrorPage mapping for a status code range.voidaddErrorPage(int code, String uri) Adds ErrorPage mapping for a status code.voidaddErrorPage(Class<? extends Throwable> exception, String uri) Adds ErrorPage mapping for an exception class.voidaddErrorPage(String exceptionClassName, String uri) Adds ErrorPage mapping for an exception class.protected voiddoStart()Starts the managed lifecycle beans in the order they were added.getErrorPage(jakarta.servlet.http.HttpServletRequest request) booleanvoidsetErrorPages(Map<String, String> errorPages) Set a map of Exception class names or error codes as a string to URI string.voidsetUnwrapServletException(boolean unwrapServletException) Methods inherited from class ErrorHandler
badMessageError, errorPageForMethod, generateAcceptableResponse, generateAcceptableResponse, getAcceptableWriter, getCacheControl, getErrorHandler, getShowMessageInTitle, handle, handleErrorPage, isShowMessageInTitle, isShowServlet, isShowStacks, setCacheControl, setShowMessageInTitle, setShowServlet, setShowStacks, write, writeErrorJson, writeErrorPage, writeErrorPageBody, writeErrorPageHead, writeErrorPageMessage, writeErrorPageStacks, writeErrorPlainMethods inherited from class ContainerLifeCycle
addBean, addBean, addEventListener, addManaged, contains, dump, dump, dump, dumpObjects, dumpStdErr, getBean, getBeans, getBeans, getContainedBeans, getContainedBeans, installBean, installBean, isAuto, isManaged, isUnmanaged, manage, removeBean, removeBeans, removeEventListener, setBeans, start, stop, unmanage, updateBean, updateBean, updateBeans, updateBeansMethods inherited from class AbstractLifeCycle
getEventListeners, getState, getState, isFailed, isRunning, isStarted, isStarting, isStopped, isStopping, setEventListeners, start, stop, toStringMethods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface Container
getCachedBeans, getEventListenersMethods inherited from interface Dumpable.DumpableContainer
isDumpableMethods inherited from interface LifeCycle
addEventListener, isFailed, isRunning, isStarted, isStarting, isStopped, isStopping, removeEventListener, start, stop
-
Field Details
-
GLOBAL_ERROR_PAGE
- See Also:
-
_servletContext
protected jakarta.servlet.ServletContext _servletContext
-
-
Constructor Details
-
ErrorPageErrorHandler
public ErrorPageErrorHandler()
-
-
Method Details
-
isUnwrapServletException
public boolean isUnwrapServletException()- Returns:
- True if ServletException is unwrapped for
RequestDispatcher.ERROR_EXCEPTION
-
setUnwrapServletException
public void setUnwrapServletException(boolean unwrapServletException) - Parameters:
unwrapServletException- True if ServletException should be unwrapped forRequestDispatcher.ERROR_EXCEPTION
-
getErrorPage
- Specified by:
getErrorPagein interfaceErrorHandler.ErrorPageMapper
-
getErrorPages
-
setErrorPages
-
addErrorPage
-
addErrorPage
-
addErrorPage
Adds ErrorPage mapping for a status code. This method is called as a result of an error-code element in a web.xml file or may be called directly.- Parameters:
code- The HTTP status code to matchuri- The URI of the error page.
-
addErrorPage
Adds ErrorPage mapping for a status code range. This method is not available from web.xml and must be called directly.- Parameters:
from- The lowest matching status codeto- The highest matching status codeuri- The URI of the error page.
-
doStart
Description copied from class:ContainerLifeCycleStarts the managed lifecycle beans in the order they were added.- Overrides:
doStartin classAbstractHandler- Throws:
Exception- If there was a problem starting. Will cause a transition to FAILED state
-