Jan Supol | 12a0573 | 2018-04-25 17:50:03 +0200 | [diff] [blame] | 1 | [//]: # " 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 | |
| 9 | Exception Mapping Example |
| 10 | ========================= |
| 11 | |
| 12 | This 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 | |
| 15 | The 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 | |
| 18 | Contents |
| 19 | -------- |
| 20 | |
| 21 | The mapping of the URI path space is presented in the following table: |
| 22 | |
| 23 | URI 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 | |
| 35 | Application is based on Grizzly container (see `App`). Everything needed |
| 36 | (resources/providers) is registered in `ExceptionResource` and custom exceptions |
| 37 | along with mappers can be found in `Exceptions` class. |
| 38 | |
| 39 | Running the Example |
| 40 | ------------------- |
| 41 | |
| 42 | Run the example as follows: |
| 43 | |
| 44 | > mvn clean compile exec:java |
| 45 | |
| 46 | This 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> |