Skip to content

Commit 4d4e7fc

Browse files
committed
Update JwtTokenProvider.java
주석
1 parent 72e78e6 commit 4d4e7fc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/shop/campustable/campustablebeclone/domain/auth/provider/JwtTokenProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public String getJti(String token) {
7878
return Jwts.parser()
7979
.verifyWith(key)
8080
.build()
81-
.parseSignedClaims(token)
81+
.parseSignedClaims(token)// 구조검사 + 서명검사(verifyWith) + 유효기간 검사
8282
.getPayload()
8383
.get("jti",String.class);
8484
}

0 commit comments

Comments
 (0)