Open LineNo2 opened 1 year ago
NullPointer에 대한 오류 예외처리 추가 @ExceptionHandler(NullPointerException.class) public ResponseEntity nullException(NullPointerException e) { log.error(e.getMessage()); return new ResponseEntity<>(new ResponseDto<>(-1, e.getMessage(), "해당 되는 데이터가 없습니다. 다른 요청을 진행해주세요."), HttpStatus.BAD_REQUEST); }
MongoDB 내부의 validation 추가
✏️ 설명
카페의 id를 활용해 카페 상세 정보를 요청받으려고 하면,
500 Internal Server Error
가 발생한다.🌌 발생 Controller
GET : api/cafe/{cafeId}
실제 링크 : http://13.125.35.24:8080/api/cafe/64fd48821a11b172e165f2fd🧾 상황 재현
카페의 상세정보를 요청한다
💻 결과