Notice
Recent Posts
Recent Comments
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
- transaction
- 인프런
- jpa
- Exception
- 자바
- spring
- java
- Thymeleaf
- 그리디
- 스프링 핵심 기능
- 스프링
- 백준
- AOP
- Proxy
- QueryDSL
- pointcut
- Spring Boot
- 알고리즘
- Greedy
- http
- springdatajpa
- Android
- SpringBoot
- JDBC
- Servlet
- kotlin
- JPQL
- db
- 김영한
- 스프링 핵심 원리
Archives
- Today
- Total
개발자되기 프로젝트
[Server] ODsay 에러 처리 본문
현재 ODsay 에러코드 처리가 너무 허술하다... ㅋㅋㅋㅋ
error code에 따라 error type을 구분하여 각 경우에 맞는 Exception으로 바꾸자.
private void exceptionSelect(ErrorType errorType) {
if (errorType == USER){
throw new IllegalArgumentException(message);
}else if (errorType == SERVER){
throw new APIServerException(message);
}else if (errorType == OUT_OF_SERVICE_AREA){
throw new OutOfServiceException(message);
}else if (errorType == CLOSE){
throw new TooCloseException(message);
}else if (errorType == NO_DATA){
throw new NoResultException(message);
}
}
@PostConstruct
private void setErrorType(){
errorTypeMap = new LinkedHashMap<>();
errorTypeMap.put("500", SERVER);
errorTypeMap.put("-8", USER);
errorTypeMap.put("-9", USER);
errorTypeMap.put("3", USER);
errorTypeMap.put("4", USER);
errorTypeMap.put("5", USER);
errorTypeMap.put("6", OUT_OF_SERVICE_AREA);
errorTypeMap.put("-98", CLOSE);
errorTypeMap.put("-99", NO_DATA);
errorTypeMap.put("-11", OUT_OF_SERVICE_AREA);
}
}
'Project > 대중교통 길찾기' 카테고리의 다른 글
[AWS] EC2 (0) | 2022.03.29 |
---|---|
API 로 변경 (0) | 2022.03.27 |
[Server] 실시간 지하철 도착정보 연동 (0) | 2022.02.10 |
Field값 검증 (0) | 2022.02.07 |
[Server] Exception Resolver (0) | 2022.02.05 |
Comments