Please enable JavaScript.
Coggle requires JavaScript to display documents.
SpringBoot (Rest (Exception Handling for Rest Controller
Link Reference…
SpringBoot
Rest
Exception Handling for Rest Controller
Link Reference
-
-
-
How
ControllerAdvice
pulblic class RestResExHandler extends
ResponseEntityExceptionHandler{
-
- ResponseStatusException,
can combine solution 3
-
-
Pros
-
One type, multiple status code
-
-
Cons
There's no unified way of exception handling , as opposed to ControllerAdvice which provides a global approach
-
-