AddTodoView
에서 할 일을 작성한 뒤 Enter 버튼을 눌러 서버에 요청을 보냈을 때
500 Internal Server Error
발생서버에서 클라이언트로부터 전송된 데이터 중 priorityUrgency
와 priorityImportance
가 null로 전달됨
서버 코드 (PriorityType.findPriorityType
)에서 nil
값을 처리하지 않아 **NullPointerException
**이 발생
에러 로그
java.lang.NullPointerException: Cannot invoke "java.lang.Double.doubleValue()" because "x" is null
클라이언트에서 요청된 데이터
{
"startDate": "2025-01-24",
"description": "어쩌구저쩌구",
"endDate": "2025-01-24"
}
priorityUrgency
와 priorityImportance
를 선택하지 않으면 nil
값으로 서버에 전송됨nil
값을 처리하는 방어 로직이 없음PriorityType.findPriorityType
에서 nil
값을 처리하지 않아 NullPointerException
발생클라이언트에서 priorityUrgency
와 priorityImportance
의 기본값을 설정하여 nil
값이 서버로 전달되지 않도록 수정
private let defaultPriorityValue = 0.0 // 기본 중요도와 긴급도 값 설정
func createTodo() {
todoAPIService.createTodo(
startDate: startDate,
description: description,
endDate: endDate,
tagId: tagId,
priorityUrgency: priorityUrgency ?? defaultPriorityValue,
priorityImportance: priorityImportance ?? defaultPriorityValue
) { result in
DispatchQueue.main.async {
switch result {
case .success(let response):
guard let response else { return }
print("DEBUG: Success - \\(response)")
case .badRequest:
print("DEBUG: Error - 잘못된 요청입니다.")
case .unAuthorized:
print("DEBUG: Error - 유효하지 않은 토큰입니다.")
case .serverError:
print("DEBUG: Error - 내부 서버 에러")
default:
print("DEBUG: Error - 에러 발생")
}
}
}
}
priorityUrgency
와 priorityImportance
가 nil
일 경우 기본값(0.0
)을 서버로 전송
수정 후 API 호출 시 성공적으로 데이터가 생성되었음을 확인