We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 72e78e6 commit 4d4e7fcCopy full SHA for 4d4e7fc
1 file changed
src/main/java/shop/campustable/campustablebeclone/domain/auth/provider/JwtTokenProvider.java
@@ -78,7 +78,7 @@ public String getJti(String token) {
78
return Jwts.parser()
79
.verifyWith(key)
80
.build()
81
- .parseSignedClaims(token)
+ .parseSignedClaims(token)// 구조검사 + 서명검사(verifyWith) + 유효기간 검사
82
.getPayload()
83
.get("jti",String.class);
84
}
0 commit comments