Skip to content

Commit

Permalink
feat: reissue JWT필터 수정
Browse files Browse the repository at this point in the history
feat: reissue JWT필터 수정
  • Loading branch information
koreaioi authored Jul 13, 2024
2 parents e03fee2 + 11239f7 commit 41efed8
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ protected void doFilterInternal(HttpServletRequest request, HttpServletResponse
return;
}

if ("/reissue".equals(requestURI)) {
filterChain.doFilter(request, response); // /reissue 경로는 필터를 통과
return;
}

// 헤더에서 access키에 담긴 토큰을 꺼냄
String accessToken = request.getHeader("access");
// System.out.println("accessToken 확인하기 "+accessToken);
Expand Down

0 comments on commit 41efed8

Please sign in to comment.