Skip to content

Commit

Permalink
test : header 확인
Browse files Browse the repository at this point in the history
  • Loading branch information
proysm committed Oct 15, 2024
1 parent 091d8c7 commit 516bd50
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ protected void doFilterInternal(HttpServletRequest request, HttpServletResponse
String authorization = request.getHeader("Authorization");

if(authorization == null || !authorization.startsWith("Bearer ")){
System.out.println("token null");
// System.out.println("token null");
System.out.println("Authorization Header: " + authorization);
filterChain.doFilter(request, response);
return; //조건이 해당되면 메소드 종료(필수)
Expand Down

0 comments on commit 516bd50

Please sign in to comment.