ExceptionHandler
-
[Restuful 학습] - Exception 핸들링을 통한 HTTP STATUS Code 관리법 (ControllerAdvice 사용)SPRING/WEBSERVICE 2020. 8. 4. 00:07
package com.example.demo.exception; @RestController @ControllerAdvice public class CustomizedResponseEntityExceptionHandler extends ResponseEntityExceptionHandler{ @ExceptionHandler(Exception.class) public final ResponseEntity handleAllExcetipon(Exception ex, WebRequest request) { System.out.println("Exception..."); ExceptionResponse exceptionResponse = new ExceptionResponse(new Date(), ex.getMe..