Package org.eclipse.jetty.ee10.servlet
Class ErrorPageErrorHandler
java.lang.Object
org.eclipse.jetty.ee10.servlet.ErrorHandler
org.eclipse.jetty.ee10.servlet.ErrorPageErrorHandler
- All Implemented Interfaces:
ErrorHandler.ErrorPageMapper
,Request.Handler
,Invocable
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 org.eclipse.jetty.ee10.servlet.ErrorHandler
ErrorHandler.ErrorPageMapper
Nested classes/interfaces inherited from interface org.eclipse.jetty.util.thread.Invocable
Invocable.Callable, Invocable.InvocationType, Invocable.ReadyTask, Invocable.Task
Nested classes/interfaces inherited from interface org.eclipse.jetty.server.Request.Handler
Request.Handler.AbortException
-
Field Summary
Fields inherited from class org.eclipse.jetty.ee10.servlet.ErrorHandler
ERROR_CHARSET, ERROR_CONTEXT, ERROR_PAGE
Fields inherited from interface org.eclipse.jetty.util.thread.Invocable
__nonBlocking, NOOP
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
addErrorPage
(int from, int to, String uri) Adds ErrorPage mapping for a status code range.void
addErrorPage
(int code, String uri) Adds ErrorPage mapping for a status code.void
addErrorPage
(Class<? extends Throwable> exception, String uri) Adds ErrorPage mapping for an exception class.void
addErrorPage
(String exceptionClassName, String uri) Adds ErrorPage mapping for an exception class.getErrorPage
(jakarta.servlet.http.HttpServletRequest request) boolean
void
setErrorPages
(Map<String, String> errorPages) Set a map of Exception class names or error codes as a string to URI string.void
setUnwrapServletException
(boolean unwrapServletException) Methods inherited from class org.eclipse.jetty.ee10.servlet.ErrorHandler
badMessageError, errorPageForMethod, generateAcceptableResponse, generateAcceptableResponse, getAcceptableWriter, getCacheControl, getErrorHandler, getShowMessageInTitle, handle, handleErrorPage, isShowServlet, isShowStacks, setCacheControl, setShowMessageInTitle, setShowServlet, setShowStacks, write, writeErrorJson, writeErrorPage, writeErrorPageBody, writeErrorPageHead, writeErrorPageMessage, writeErrorPageStacks, writeErrorPlain
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.eclipse.jetty.server.Request.Handler
getInvocationType
-
Field Details
-
GLOBAL_ERROR_PAGE
- See Also:
-
-
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:
getErrorPage
in interfaceErrorHandler.ErrorPageMapper
-
getErrorPages
-
setErrorPages
Set a map of Exception class names or error codes as a string to URI string.- Parameters:
errorPages
- a map of Exception class names or error codes as a string to URI string
-
addErrorPage
Adds ErrorPage mapping for an exception class. This method is called as a result of an exception-type element in a web.xml file or may be called directly- Parameters:
exception
- The exceptionuri
- The URI of the error page.
-
addErrorPage
Adds ErrorPage mapping for an exception class. This method is called as a result of an exception-type element in a web.xml file or may be called directly- Parameters:
exceptionClassName
- The exceptionuri
- The URI of the error page.
-
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.
-