일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- oracle
- Spring Boot
- jpa
- error
- Exception
- Open Source
- Core Java
- spring
- IntelliJ
- JDBC
- Eclipse
- MySQL
- Docker
- 설정
- JavaScript
- myBatis
- git
- SpringBoot
- maven
- STS
- PostgreSQL
- Tomcat
- Thymeleaf
- Python
- 오픈소스
- AJAX
- MSSQL
- Source
- 문서
- ubuntu
- Today
- Total
목록@ControllerAdvice (3)
헤르메스 LIFE
아마도 ExceptionHandlerExceptionResolver 가 설정되어 있지 않았을 가능성이 있습니다. 스프링 MVC 에서 예외를 처리하는 방법은 Spring 3.2 이전 @ExceptionHandler HandlerExceptionResolver String 3.2 이후 @ControllerAdvice Spring 5 ResponseStatusException Dispatcher Servlet 에는 3개의 HandlerExceptionResolver 가 등록되어 있습니다. ExceptionHandlerExceptionResolver ResponseStatusExceptionResolver DefaultHandlerExceptinResolver https://luvstudy.tistory.com..
@ExceptionHandler 를 사용하면, Exception 을 Catch 할 수 있습니다. @ExceptionHandler는 Controller 에서만 사용 가능합니다. package test.controller; import java.util.ArrayList; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.ExceptionHandler; import org.springframework.web.bind.annotation.GetMapping; @Controller public class TestControl..
개발환경 Spring 3.2.9 MyBatis 3.4.6 Microsoft SQL Server REST환경을 구축하고, Insert 를 수행하던 중 중복오류 발생. Exception 메시지가 정제되지 않고 리턴되었습니다. ### Error updating database. Cause: com.microsoft.sqlserver.jdbc.SQLServerException: PRIMARY KEY 제약 조건 'USER_PK'을(를) 위반했습니다. 개체 'dbo.TB_USER'에 중복 키를 삽입할 수 없습니다. 중복 키 값은 (4)입니다. ### The error may involve defaultParameterMap ### The error occurred while setting parameters ###..