Skip to content

Commit

Permalink
Update JwtProvider.java
Browse files Browse the repository at this point in the history
  • Loading branch information
k000927 authored Aug 14, 2024
1 parent 90b1d82 commit 213ad22
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ public Claims getClaims(String token) {


private Date getExpireDateAccessToken() {
long expireTimeMils = 1000L * 60 * 5;
long expireTimeMils = 1000L * 60 * 60 * 24 * 365;
return new Date(System.currentTimeMillis() + expireTimeMils);
}

}
}

0 comments on commit 213ad22

Please sign in to comment.