From 6b6dea66dc53ebee26ac5e6731d8e7f0bd6a9fe2 Mon Sep 17 00:00:00 2001 From: rk <94314517@qq.com> Date: 星期五, 22 八月 2025 20:57:59 +0800 Subject: [PATCH] 111 --- server/services/src/main/java/com/doumee/config/jwt/JwtTokenUtil.java | 7 +++++-- 1 files changed, 5 insertions(+), 2 deletions(-) diff --git a/server/services/src/main/java/com/doumee/config/jwt/JwtTokenUtil.java b/server/services/src/main/java/com/doumee/config/jwt/JwtTokenUtil.java index f1e4399..47d22e5 100644 --- a/server/services/src/main/java/com/doumee/config/jwt/JwtTokenUtil.java +++ b/server/services/src/main/java/com/doumee/config/jwt/JwtTokenUtil.java @@ -76,7 +76,9 @@ public void refreshToken(String token,Member member) { try { if(Objects.nonNull(member)){ - redisTemplate.opsForValue().set(Constants.REDIS_TOKEN_KEY+token,JSONObject.toJSONString(member),jwtProperties.getExpiration(), TimeUnit.MILLISECONDS); + redisTemplate.expire(Constants.REDIS_TOKEN_KEY+token,jwtProperties.getExpiration(), TimeUnit.MILLISECONDS); +// redisTemplate.delete(Constants.REDIS_TOKEN_KEY+token); +// redisTemplate.opsForValue().set(Constants.REDIS_TOKEN_KEY+token,JSONObject.toJSONString(member),jwtProperties.getExpiration(), TimeUnit.MILLISECONDS); } } catch (Exception e) { @@ -112,7 +114,8 @@ .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), + jwtProperties.getExpiration(), TimeUnit.MILLISECONDS); return token; } -- Gitblit v1.9.3