문제해결

Spring) @ExceptionHandler(Exception.class)가 동작하지않음.

backend dev 2023. 1. 25.
public class ExceptionHandlerAdvice  extends ResponseEntityExceptionHandler 

ResponseEntityExceptionHandler의 상속을 지워준다.

 

 

 

@ExceptionHandler(Exception.class) not handling all types of exceptions

I am trying to handle all Types of exceptions using @ExceptionHandler(Exception.class). But it's not handling all types of exception. When I am trying to access wrong HTTP method from postman/ b...

stackoverflow.com

 

댓글