We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec399a1 commit fe17893Copy full SHA for fe17893
src/main/java/io/crops/warmletter/global/jwt/provider/JwtTokenProvider.java
@@ -25,7 +25,7 @@ public class JwtTokenProvider {
25
26
private final RedisTemplate<String, String> redisTemplate;
27
28
- private final long ACCESS_TOKEN_EXPIRE_TIME = 1000L * 60 * 5; // 30분
+ private final long ACCESS_TOKEN_EXPIRE_TIME = 1000L * 60 * 30; // 30분
29
private final long REFRESH_TOKEN_EXPIRE_TIME = 1000L * 60 * 60 * 24 * 14; // 14일
30
31
private Key key; // JWT 서명에 사용할 키
0 commit comments