1. 혹시나의 uuid 중복 생성을 대비한 경우 처리
// 수정 전: 어디까지나 가정, 최악의 경우 무한 반복
while (authRepository.existsByUuid(createdUuid)){
		createdUuid = "normal-"+ UUID.randomUUID().toString();
}
// 수정 후
int tryCnt = 0;
while (authRepository.existsByUuid(createdUuid) && tryCnt <3){
		createdUuid = "normal-"+ UUID.randomUUID().toString();
		tryCnt++;
}

if(tryCnt == 3){
		throw new BaseException(BaseResponseStatus.ATTEMPT_LIMIT_EXCEEDED);
}
  1. 아이디 중복체크 시 동시성 문제 해결: redis에 아이디 넣어주고(?) 회원가입 되면 삭제 or unique 처리 ← while문 방식은 좋지 않음 ← exists (think)