Class ErrorHandler
- All Implemented Interfaces:
Request.Handler
,Invocable
- Direct Known Subclasses:
ReHandlingErrorHandler
Server.setErrorHandler(Request.Handler)
.
It is called by the Response.writeError(Request, Response, Callback, int, String)
to generate an error page.-
Nested Class Summary
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
Modifier and TypeFieldDescriptionstatic final HttpField
static final String
static final String
static final String
static final String
Fields inherited from interface org.eclipse.jetty.util.thread.Invocable
__nonBlocking, NOOP
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionbadMessageError
(int status, String reason, HttpFields.Mutable fields) Deprecated, for removal: This API element is subject to removal in a future version.Do not override.protected int
computeBufferSize
(Request request) boolean
errorPageForMethod
(String method) protected boolean
generateAcceptableResponse
(Request request, Response response, Callback callback, String contentType, List<Charset> charsets, int code, String message, Throwable cause) protected void
generateResponse
(Request request, Response response, int code, String message, Throwable cause, Callback callback) int
Get the cacheControl.static Request.Handler
getErrorHandler
(Server server, ContextHandler context) boolean
Invoked to handle the passed HTTP request and response.boolean
boolean
boolean
void
setBufferSize
(int bufferSize) void
setCacheControl
(String cacheControl) Set the cacheControl.void
setDefaultResponseMimeType
(String defaultResponseMimeType) void
setShowCauses
(boolean showCauses) void
setShowMessageInTitle
(boolean showMessageInTitle) Set if true, the error message appears in page title.void
setShowStacks
(boolean showStacks) protected void
protected void
writeErrorHtml
(Request request, Writer writer, Charset charset, int code, String message, Throwable cause, boolean showStacks) protected void
writeErrorHtmlBody
(Request request, Writer writer, int code, String message, Throwable cause, boolean showStacks) protected void
writeErrorHtmlHead
(Request request, Writer writer, int code, String message) protected void
writeErrorHtmlMessage
(Request request, Writer writer, int code, String message, Throwable cause, String uri) protected void
writeErrorHtmlMeta
(Request request, Writer writer, Charset charset) protected void
writeErrorHtmlStacks
(Request request, Writer writer) protected void
writeErrorJson
(Request request, PrintWriter writer, int code, String message, Throwable cause, boolean showStacks) protected void
writeErrorPlain
(Request request, PrintWriter writer, int code, String message, Throwable cause, boolean showStacks) 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
-
ERROR_STATUS
- See Also:
-
ERROR_MESSAGE
- See Also:
-
ERROR_EXCEPTION
- See Also:
-
ERROR_CONTEXT
- See Also:
-
ERROR_METHODS
-
ERROR_CACHE_CONTROL
-
-
Constructor Details
-
ErrorHandler
public ErrorHandler()
-
-
Method Details
-
errorPageForMethod
-
handle
Description copied from interface:Request.Handler
Invoked to handle the passed HTTP request and response.
The request is accepted by returning true, then handling must be concluded by completing the passed callback. The handling may be asynchronous, i.e. this method may return true and complete the given callback later, possibly from a different thread. If this method returns false, then the callback must not be invoked and any mutation on the response reversed.
Exceptions thrown by this method may be subsequently handled by an error
Request.Handler
, if present, otherwise a default HTTP 500 error is generated and the callback completed while writing the error response.The simplest implementation is:
public boolean handle(Request request, Response response, Callback callback) { callback.succeeded(); return true; }
A HelloWorld implementation is:
public boolean handle(Request request, Response response, Callback callback) { response.write(true, ByteBuffer.wrap("Hello World\n".getBytes(StandardCharsets.UTF_8)), callback); return true; }
- Specified by:
handle
in interfaceRequest.Handler
- Parameters:
request
- the HTTP request to handleresponse
- the HTTP response to handlecallback
- the callback to complete when the handling is complete- Returns:
- True if and only if the request will be handled, a response generated and the callback eventually called. This may occur within the scope of the call to this method, or asynchronously some time later. If false is returned, then this method must not generate a response, nor complete the callback.
- Throws:
Exception
- if there is a failure during the handling. Catchers cannot assume that the callback will be called and thus should attempt to complete the request as if a false had been returned.- See Also:
-
generateResponse
protected void generateResponse(Request request, Response response, int code, String message, Throwable cause, Callback callback) throws IOException - Throws:
IOException
-
generateAcceptableResponse
protected boolean generateAcceptableResponse(Request request, Response response, Callback callback, String contentType, List<Charset> charsets, int code, String message, Throwable cause) throws IOException - Throws:
IOException
-
computeBufferSize
-
writeErrorHtml
protected void writeErrorHtml(Request request, Writer writer, Charset charset, int code, String message, Throwable cause, boolean showStacks) throws IOException - Throws:
IOException
-
writeErrorHtmlMeta
protected void writeErrorHtmlMeta(Request request, Writer writer, Charset charset) throws IOException - Throws:
IOException
-
writeErrorHtmlHead
protected void writeErrorHtmlHead(Request request, Writer writer, int code, String message) throws IOException - Throws:
IOException
-
writeErrorHtmlBody
protected void writeErrorHtmlBody(Request request, Writer writer, int code, String message, Throwable cause, boolean showStacks) throws IOException - Throws:
IOException
-
writeErrorHtmlMessage
protected void writeErrorHtmlMessage(Request request, Writer writer, int code, String message, Throwable cause, String uri) throws IOException - Throws:
IOException
-
writeErrorPlain
protected void writeErrorPlain(Request request, PrintWriter writer, int code, String message, Throwable cause, boolean showStacks) -
writeErrorJson
protected void writeErrorJson(Request request, PrintWriter writer, int code, String message, Throwable cause, boolean showStacks) -
writeErrorHtmlStacks
- Throws:
IOException
-
badMessageError
@Deprecated(since="12.0.8", forRemoval=true) public ByteBuffer badMessageError(int status, String reason, HttpFields.Mutable fields) Deprecated, for removal: This API element is subject to removal in a future version.Do not override. No longer invoked by Jetty.Bad Message Error bodyGenerate an error response body to be sent for a bad message. In this case there is something wrong with the request, so either a request cannot be built, or it is not safe to build a request. This method allows for a simple error page body to be returned and some response headers to be set.
- Parameters:
status
- The error code that will be sentreason
- The reason for the error code (may be null)fields
- The header fields that will be sent with the response.- Returns:
- The content as a ByteBuffer, or null for no body.
-
getCacheControl
Get the cacheControl.- Returns:
- the cacheControl header to set on error responses.
-
setCacheControl
Set the cacheControl.- Parameters:
cacheControl
- the cacheControl header to set on error responses.
-
isShowStacks
- Returns:
- True if stack traces are shown in the error pages
-
setShowStacks
public void setShowStacks(boolean showStacks) - Parameters:
showStacks
- True if stack traces are shown in the error pages
-
isShowCauses
@ManagedAttribute("Whether the error page shows the exception causes") public boolean isShowCauses()- Returns:
- True if exception causes are shown in the error pages
-
setShowCauses
public void setShowCauses(boolean showCauses) - Parameters:
showCauses
- True if exception causes are shown in the error pages
-
isShowMessageInTitle
@ManagedAttribute("Whether the error message is shown in the error page title") public boolean isShowMessageInTitle() -
setShowMessageInTitle
public void setShowMessageInTitle(boolean showMessageInTitle) Set if true, the error message appears in page title.- Parameters:
showMessageInTitle
- if true, the error message appears in page title
-
getDefaultResponseMimeType
@ManagedAttribute("Mime type to be used when a client does not specify an Accept header, or the request did not fully parse") public String getDefaultResponseMimeType()- Returns:
- The mime type to be used when a client does not specify an Accept header, or the request did not fully parse
-
setDefaultResponseMimeType
- Parameters:
defaultResponseMimeType
- The mime type to be used when a client does not specify an Accept header, or the request did not fully parse
-
write
- Throws:
IOException
-
getErrorHandler
-
getBufferSize
- Returns:
- Buffer size for entire error response. If error page is bigger than buffer size, it will be truncated. With a -1 meaning that a heuristic will be used (e.g. min(8K, httpConfig.bufferSize))
-
setBufferSize
public void setBufferSize(int bufferSize) - Parameters:
bufferSize
- Buffer size for entire error response. If error page is bigger than buffer size, it will be truncated. With a -1 meaning that a heuristic will be used (e.g. min(8K, httpConfig.bufferSize))
-