Skip to content

Commit

Permalink
Refact : 토큰 시간 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Parkgeonmoo committed Jan 26, 2024
1 parent f8bd174 commit c6996da
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class MeJWTService {
@Value("${JWT_TOKEN_SECRET_KEY}")
private String secretKey;

private final long accessTokenValidTime = 10 * 1000L; // access토큰의 유효시간 (30분)
private final long accessTokenValidTime = 30 * 1000L; // access토큰의 유효시간 (30분)
/*private final long accessTokenValidTime = 30 * 60* 1000L; // access토큰의 유효시간 (30분)*/
private final long refreshTokenValidTime = 3000 * 60 * 1000L; //refresh 토큰의 유효시간 (3000분)

Expand Down

0 comments on commit c6996da

Please sign in to comment.