Skip to content

Commit

Permalink
[fix] 토큰 시간 연장
Browse files Browse the repository at this point in the history
yunji118 committed Jan 11, 2024
1 parent 5c356a2 commit c7a4564
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -20,8 +20,8 @@
public class JwtTokenProvider {
private static final String AUTHORITIES_KEY = "auth";
private static final String BEARER_TYPE = "BEARER";
private final Long ACCESS_TOKEN_EXPIRE_TIME = 10000L * 60 * 60;
private final Long REFRESH_TOKEN_EXPIRE_TIME = 10000L * 60 * 60 * 24 * 7;
private final Long ACCESS_TOKEN_EXPIRE_TIME = 1000L * 60 * 60 * 24 * 3;
private final Long REFRESH_TOKEN_EXPIRE_TIME = 1000L * 60 * 60 * 24 * 7;

private final CustomUserDetailsService customUserDetailsService;

0 comments on commit c7a4564

Please sign in to comment.