Skip to content

Commit

Permalink
#539 [feat] 토큰 만료 기간 연장
Browse files Browse the repository at this point in the history
  • Loading branch information
sohyundoh committed Oct 19, 2024
1 parent 6c9b4b7 commit 762065d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ public class JwtTokenProvider {
private final ObjectMapper objectMapper;
private static final String MEMBER_ID = "memberId";
private static final String JOINED_ROLE = "joinedRole";
private static final Long ACCESS_TOKEN_EXPIRATION_TIME = 4 * 60 * 60 * 1000L;
private static final Long REFRESH_TOKEN_EXPIRATION_TIME = 60 * 60 * 24 * 1000L * 14;
private static final Long ACCESS_TOKEN_EXPIRATION_TIME = 48 * 60 * 60 * 1000L;
private static final Long REFRESH_TOKEN_EXPIRATION_TIME = 60 * 60 * 24 * 1000L * 30;

@Value("${jwt.secret}")
private String JWT_SECRET;
Expand Down

0 comments on commit 762065d

Please sign in to comment.