You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
해당 부분 코드에서 getToken 함수는 토큰이 주어지지 않으면 NullJwtException을 반환한다. 허용하지 않은 URL로 토큰이 없는 사용자가 접근했을 때 막기 위한 용도로 만들었으나, 허용한 URL까지 전부 저 Exception이 반환되는 문제가 있었다.
이 문제점은, Authentication Filter가 getToken부분에서 그대로 종료되기 때문에 그 아래 코드는 실행되지 않았다.
토큰이 입력되지 않은 예외를 핸들링하는 다른 방법을 찾아본다.
2️⃣ To-do
The text was updated successfully, but these errors were encountered:
1️⃣ 설명 (Description)
해당 부분 코드에서
getToken
함수는 토큰이 주어지지 않으면NullJwtException
을 반환한다. 허용하지 않은 URL로 토큰이 없는 사용자가 접근했을 때 막기 위한 용도로 만들었으나, 허용한 URL까지 전부 저 Exception이 반환되는 문제가 있었다.이 문제점은, Authentication Filter가 getToken부분에서 그대로 종료되기 때문에 그 아래 코드는 실행되지 않았다.
토큰이 입력되지 않은 예외를 핸들링하는 다른 방법을 찾아본다.
2️⃣ To-do
The text was updated successfully, but these errors were encountered: