→ redis의 key-value 형태를 반대로 하여 중복 문제를 해결

기존 액세스토큰 재발급 Service 로직에 대해서

But

key와 value의 형태가 바뀜으로 인해 로직 과정이 변경

issue

// 2. Redis에서 요청받은 refreshToken에 대한 uuid 추출
String uuid  = (String) redisTemplate.opsForValue().get(refreshTokenValue);
log.info("Redis에서 조회된 uuid: {}", uuid);