Dieser Inhalt ist in der von Ihnen ausgewählten Sprache nicht verfügbar.
Chapter 24. Exception Handling
24.1. Exception Mappers Link kopierenLink in die Zwischenablage kopiert!
Link kopierenLink in die Zwischenablage kopiert!
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.