Notice
Recent Posts
Recent Comments
Link
«   2025/01   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
Archives
Today
Total
관리 메뉴

개발자되기 프로젝트

[API예외] Spring제공 ExceptionResolver2 본문

인프런/[인프런] 스프링 MVC 2

[API예외] Spring제공 ExceptionResolver2

Seung__ 2021. 10. 1. 17:00

1. DefaultHandlerExceptionResolver


  • DefaultHandlerExceptionResolver 는 스프링 내부에서 발생하는 스프링 예외를 해결.
  • 대표적으로 파라미터 바인딩 시점에 타입이 맞지 않으면 
  • 내부에서 TypeMismatchException 이 발생하는데, 이 경우 예외가 발생했기 때문에 
  • 그냥 두면 서블릿 컨테이너까지 오류가 올라가고, 결과적으로 500 오류가 발생한다.
  • 그런데 파라미터 바인딩은 대부분 클라이언트가 HTTP 요청 정보를 잘못 호출해서 발생하는 문제이다.
  • HTTP 에서는 이런 경우 HTTP 상태 코드 400을 사용하도록 되어 있다.
  • DefaultHandlerExceptionResolver 는 이것을 500 오류가 아니라 HTTP 상태 코드를 400으로 변경

 

 

2.Test


  • Data에 Integer가 넘어와야 하는데 String인 "qqq"를 넘겨보자.
    @GetMapping("/api/default-handler-ex")
    public String defaultException(@RequestParam Integer data){
        return "ok";
    }
  • TypeMismatch가 발생했고, 400으로 반환되었다.

  • log
    • DefaultHandlerExceptionResolver에서 예외가 발생했다.
    • Integear가 필요하나 String이 넘어와서 TypeMismatchException이 발생했다.
2021-10-01 16:40:58.867 WARN 15656 --- [nio-8080-exec-5] .w.s.m.s.DefaultHandlerExceptionResolver : Resolved [org.springframework.web.method.annotation.MethodArgumentTypeMismatchException:
Failed to convert value of type 'java.lang.String' to required type 'java.lang.Integer';
nested exception is java.lang.NumberFormatException: For input string: "qqq"]

 

 

3. DefaultHandlerExceptionResolver


  • DefaultHandlerExceptionResolver의 TypeMismatchException처리 부분을 보자.
  • response.sendError()에 SC_BAD_REQUEST : 400을 세팅해준다.,
	protected ModelAndView handleTypeMismatch(TypeMismatchException ex,
			HttpServletRequest request, HttpServletResponse response, @Nullable Object handler) throws IOException {

		response.sendError(HttpServletResponse.SC_BAD_REQUEST);
		return new ModelAndView();
	}

 

4. 정리


  • HandlerExceptionResolver 를 직접 사용하기는 복잡하다.
  • API 오류 응답의 경우 response 에 직접 데이터를 넣어야 해서 매우 불편하고 번거롭다. 
  • 특히 ModelAndView 를 반환해야 하는 것도 API에는 잘 맞지 않는다.
  • 스프링은 이 문제를 해결하기 위해 @ExceptionHandler 라는 예외 처리 기능을 제공

 

5. GitHub : 211001 DefaultHandlerExceptionResolver


 

GitHub - bsh6463/Exception

Contribute to bsh6463/Exception development by creating an account on GitHub.

github.com

 

Comments