일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Python
- Java
- Elasticsearch
- 차트
- API
- springboot
- MySQL
- token filter test
- plugin
- matplotlib
- ELASTIC
- high level client
- TensorFlow
- aggs
- sort
- Mac
- zip 암호화
- zip 파일 암호화
- flask
- Kafka
- 파이썬
- aggregation
- license delete
- docker
- License
- Test
- analyzer test
- licence delete curl
- query
- 900gle
Archives
- Today
- Total
개발잡부
Exception 처리 본문
반응형
에러상태
리턴값
이기.. 이걸..
Exception 이 발생하는 경우 공통으로 처리해보자
import com.etoos.datalake.model.response.CommonResult;
import com.etoos.datalake.service.ResponseService;
import lombok.RequiredArgsConstructor;
import org.springframework.http.HttpStatus;
import org.springframework.web.bind.annotation.ExceptionHandler;
import org.springframework.web.bind.annotation.ResponseStatus;
import org.springframework.web.bind.annotation.RestControllerAdvice;
import javax.servlet.http.HttpServletRequest;
@RequiredArgsConstructor
@RestControllerAdvice
public class ExceptionAdvice {
private final ResponseService responseService;
@ExceptionHandler(Exception.class)
@ResponseStatus(HttpStatus.INTERNAL_SERVER_ERROR)
protected CommonResult defaultException(HttpServletRequest request, Exception e){
return responseService.getFailResult();
}
}
ControllerAdvice의 Annotation은
@ControllerAdvice
@RestControllerAdvice - json 형태의 리턴값
특정 패키지 하위 설정
@RestControllerAdvice(basePackage="com.etoos.datalake")
@ExceptionHandler(Exception.class) - Exception 이 발생하면 Handler 로 처리하겠다
@ResponseStatus(HttpStatus.INTERNAL_SERVER_ERROR) - 해당 Exception 이 발생하면 Response 에 출력되는 httpStatus Code가 500으로 내려가도록 설정
수정된 Response
커스텀
나중에 데이타 못찾을때 써야지
반응형
'JAVA > springboot' 카테고리의 다른 글
[java] API - redis cache (2) | 2023.10.09 |
---|---|
[java] API - file system cache (request cache) (0) | 2023.10.09 |
[springboot] springboot kafka 연동하기 (0) | 2022.10.22 |
[springboot] 엑셀 (0) | 2022.02.21 |
[springboot] 프로젝트 생성 - intelliJ IDEA (0) | 2022.01.18 |
Comments