Recent Posts
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- VARCHAR (1)
- vfr video
- JanusWebRTCGateway
- tolerated
- python
- 달인막창
- 코루틴 컨텍스트
- preemption #
- table not found
- 오블완
- JanusWebRTCServer
- 개성국밥
- 코루틴 빌더
- PersistenceContext
- kotlin
- 겨울 부산
- JanusWebRTC
- JanusGateway
- k8s #kubernetes #쿠버네티스
- terminal
- 티스토리챌린지
- PytestPluginManager
- Value too long for column
- mp4fpsmod
- 자원부족
- taint
- pytest
- 깡돼후
- 헥사고날아키텍처 #육각형아키텍처 #유스케이스
- Spring Batch
Archives
목록ErrorResponse (1)
너와 나의 스토리
[SpringBoot] @ControllerAdvice를 이용하여 exception handling - Custom Error Response 보내기 & message를 포함한 error response
Exception Handler Rest API로 받은 요청을 처리하다가 exception이 발생하는 경우가 있다. 이러한 exception들을 한 곳에서 처리하도록 ExceptionHandler를 만들어보자. @ControllerAdvice에 있는 메서드들은 모든 controller에 전역으로 적용된다. 어떤 controller에서 exception이 발생하던지 이 exception handler에 명시된 대로 response가 반환된다. @ControllerAdvice internal class DeviceExceptionHandler { @ResponseStatus(HttpStatus.NOT_FOUND) @ExceptionHandler(DeviceNotFoundException::class) fun..
개발/Spring Boot
2022. 6. 3. 14:18