Skip to content

Commit

Permalink
Merge pull request #78 from 0702Yoon/main
Browse files Browse the repository at this point in the history
ACCESS TOKEN TIME 10분으로 재설정
  • Loading branch information
0702Yoon authored Aug 14, 2024
2 parents 9087b95 + 16e73c9 commit af292a1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
@Component
public class JwtTokenProvider {
private final Key key;
private static final long ACCESS_TIME = 10 * 60 * 100L; // 10분
private static final long ACCESS_TIME = 10 * 60 * 1000L; // 10분
private static final long REFRESH_TIME = 30 * 60 * 1000L; //30분
public JwtTokenProvider(@Value("${jwt.secret}") String secretKey){
byte[] keyBytes = Decoders.BASE64.decode(secretKey);
Expand Down

0 comments on commit af292a1

Please sign in to comment.