rk
2026-01-28 9b64c373654e93dd233a7cc2f6ff28f04daa0b38
server/services/src/main/java/com/doumee/config/jwt/JwtTokenUtil.java
@@ -105,9 +105,7 @@
                .setExpiration(expirationDate)
                .signWith(SignatureAlgorithm.HS512, jwtProperties.getSecret())
                .compact();
        redisTemplate.opsForValue().set(Constants.REDIS_TOKEN_KEY+token,JSONObject.toJSONString(member)
//                , jwtProperties.getExpiration(), TimeUnit.MILLISECONDS
        );
        redisTemplate.opsForValue().set(Constants.REDIS_TOKEN_KEY+token,JSONObject.toJSONString(member));
        return token;
    }