Skip to content

Commit

Permalink
[FIX] JWT 토큰 유효기간 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
ChaeAg committed Feb 20, 2024
1 parent d93ea7b commit 2620776
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/wss/websoso/config/jwt/JwtProvider.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
public class JwtProvider {

private static final String USER_ID = "userId";
private static final Long TOKEN_EXPIRATION_TIME = 10 * 24 * 60 * 60 * 1000L; // 24시간
private static final Long TOKEN_EXPIRATION_TIME = 6 * 30 * 24 * 60 * 60 * 1000L; // 6개월
// private static final Long TOKEN_EXPIRATION_TIME = 60 * 1000L; // 1분

@Value("${jwt.secret}")
Expand Down

0 comments on commit 2620776

Please sign in to comment.