250x250
Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Eclipse
- Python
- SpringBoot
- Thymeleaf
- AJAX
- spring
- jpa
- JavaScript
- MySQL
- 설정
- maven
- Tomcat
- ubuntu
- PostgreSQL
- git
- Core Java
- Exception
- myBatis
- 오픈소스
- oracle
- Source
- IntelliJ
- MSSQL
- error
- Open Source
- JDBC
- Spring Boot
- Docker
- 문서
- STS
Archives
- Today
- Total
헤르메스 LIFE
[Spring] @ExceptionHandler가 동작하지 않을 때 본문
728x90
아마도 ExceptionHandlerExceptionResolver 가 설정되어 있지 않았을 가능성이 있습니다.
<bean id="exceptionHandlerExceptionResolver" class="org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExcetpionResolver" />
스프링 MVC 에서 예외를 처리하는 방법은
Spring 3.2 이전
- @ExceptionHandler
- HandlerExceptionResolver
String 3.2 이후
- @ControllerAdvice
Spring 5
- ResponseStatusException
Dispatcher Servlet 에는 3개의 HandlerExceptionResolver 가 등록되어 있습니다.
- ExceptionHandlerExceptionResolver
- ResponseStatusExceptionResolver
- DefaultHandlerExceptinResolver
https://luvstudy.tistory.com/105
https://bamdule.tistory.com/92
https://tecoble.techcourse.co.kr/post/2021-05-10-controller_advice_exception_handler/
728x90
'Spring Framework' 카테고리의 다른 글
[Logging] Log4j, Logback, Log4j2 로 MyBatis SQL 쿼리 남기기 (0) | 2021.06.17 |
---|---|
[Spring] Ajax data를 Controller에서 받는 두 가지 방법 : Vo / Map (0) | 2021.06.11 |
[Spring] Exception 처리 (0) | 2021.06.08 |
[LogBack] LogBack 설정 (0) | 2021.04.03 |
[Spring] MessageSource 사용법 (0) | 2021.04.02 |