From 199977eb405e1707ccde9848a8f2f8e1ab8b4fe8 Mon Sep 17 00:00:00 2001 From: 0702Yoon Date: Wed, 14 Aug 2024 20:32:47 +0900 Subject: [PATCH] =?UTF-8?q?chore=20:=20ACCESS=5FTIME=2010=EB=B6=84?= =?UTF-8?q?=EC=9C=BC=EB=A1=9C=20=EC=9E=AC=EC=84=A4=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/example/bigbrotherbe/global/jwt/JwtTokenProvider.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/example/bigbrotherbe/global/jwt/JwtTokenProvider.java b/src/main/java/com/example/bigbrotherbe/global/jwt/JwtTokenProvider.java index 034786b..1be9b0b 100644 --- a/src/main/java/com/example/bigbrotherbe/global/jwt/JwtTokenProvider.java +++ b/src/main/java/com/example/bigbrotherbe/global/jwt/JwtTokenProvider.java @@ -31,7 +31,7 @@ @Component public class JwtTokenProvider { private final Key key; - private static final long ACCESS_TIME = 10 * 60 * 100L; // 10분 + private static final long ACCESS_TIME = 10 * 60 * 1000L; // 10분 private static final long REFRESH_TIME = 30 * 60 * 1000L; //30분 public JwtTokenProvider(@Value("${jwt.secret}") String secretKey){ byte[] keyBytes = Decoders.BASE64.decode(secretKey);