Este contenido no está disponible en el idioma seleccionado.
Chapter 24. Exception Handling
24.1. Exception Mappers Copiar enlaceEnlace copiado en el portapapeles!
Copiar enlaceEnlace copiado en el portapapeles!
ExceptionMapper
s are custom, application-provided components that can catch application exceptions and write specific HTTP responses. They are associated with @Provider
, and implement the following interface:
When an application throws an exception, the exception is caught by the JAX-RS runtime. JAX-RS then scans registered
ExceptionMapper
s to locate one which supports marshalling the exception type thrown. An example ExceptionMapper
follows:
ExceptionMapper
s are registered in the same way as MessageBodyReader
s and MessageBodyWriter
s: by scanning through the RESTEasy provider context-param
(if you are deploying in a WAR
file), or programmatically through the ResteasyProviderFactory
class.