blob: 613624d46e5af802103acfd640d994a221042c6f [file] [log] [blame]
Jan Supol12a05732018-04-25 17:50:03 +02001[//]: # " Copyright (c) 2015, 2018 Oracle and/or its affiliates. All rights reserved. "
2[//]: # " "
3[//]: # " This program and the accompanying materials are made available under the "
4[//]: # " terms of the Eclipse Distribution License v. 1.0, which is available at "
5[//]: # " http://www.eclipse.org/org/documents/edl-v10.php. "
6[//]: # " "
7[//]: # " SPDX-License-Identifier: BSD-3-Clause "
8
9Exception Mapping Example
10=========================
11
12This example demonstrates how to create a custom exception mapping. There are described several common use-cases such as
13`WebApplicationException`, custom exceptions and an exception mapper inheritance.
14
15The full description how to handle exception and map them to Response object can be found in Jersey User Guide, chapter
16[WebApplicationException and Mapping Exceptions to Responses](https://jersey.java.net/documentation/latest/representations.html#d0e6567).
17
18Contents
19--------
20
21The mapping of the URI path space is presented in the following table:
22
23URI path | HTTP methods | Allowed Values | Description
24----------------------------------------- | ------------- |-------------------------------------------- | ----------------
25**_/exception_** | GET | --- | returns "ping!"
26**_/exception/webapplication_entity_** | POST | two numbers delimited by colons e.g. 1:201 | not handled by `WebApplicationExceptionMapper` (already has an entity in the exception)
27**_/exception/webapplication_noentity_** | POST | e.g. 1:201 | handled by `WebApplicationExceptionMapper`
28**_/exception/my_** | POST | e.g. 1:201 | handled by `MyExceptionMapper`
29**_/exception/mysub_** | POST | e.g. 1:201 | handled by `MySubExceptionMapper`
30**_/exception/mysubsub_** | POST | e.g. 1:201 | handled by `MySubExceptionMapper`
31**_/exception/request_exception_** | POST | String "Request Exception" | not reached a resource method, processed by `ContainerRequestFilter`
32**_/exception/response_exception_** | GET | --- | response handled and changed by `ContainerResponseFilter`
33
34
35Application is based on Grizzly container (see `App`). Everything needed
36(resources/providers) is registered in `ExceptionResource` and custom exceptions
37along with mappers can be found in `Exceptions` class.
38
39Running the Example
40-------------------
41
42Run the example as follows:
43
44> mvn clean compile exec:java
45
46This deploys the example using [Grizzly](http://grizzly.java.net/) container.
47
48- <http://localhost:8080/base/exception>
49- <http://localhost:8080/base/exception/response_exception>