권장 사항
예외 처리는 쿼리 속도가 빠른 순으로
if(쿼리_속도_2ms){
throw NotFoundException()
}
if(쿼리_속도_7ms){
throw BadRequestException()
}
if(쿼리_속도_16ms){
throw NotFoundException()
}더티 체킹 이해하기
Last updated
if(쿼리_속도_2ms){
throw NotFoundException()
}
if(쿼리_속도_7ms){
throw BadRequestException()
}
if(쿼리_속도_16ms){
throw NotFoundException()
}Last updated