Skip to content

Commit

Permalink
chore: 액세스 토큰 만료 시간 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeongmin39 committed Jan 3, 2025
1 parent 16f192c commit e46cfa4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
public class JwtTokenProvider {

private static final String USER_ID = "userId";
private static final Long ACCESS_TOKEN_EXPIRATION_TIME = 60 * 60 * 1000L * 24; // 1일
private static final Long ACCESS_TOKEN_EXPIRATION_TIME = 60 * 60 * 1000L * 5; // 5시간
private static final Long REFRESH_TOKEN_EXPIRATION_TIME = 60 * 60 * 1000L * 24 * 14; // 14일

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

0 comments on commit e46cfa4

Please sign in to comment.