Skip to content

Commit

Permalink
feature/profile api 요청 시 토큰이 누락된 경우의 403 예외처리 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
HeeSung98 committed Mar 24, 2024
1 parent d83ca83 commit 2cae7f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package com.weather.user.repository;

import com.weather.user.entity.MailCode;
import com.weather.user.entity.User;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.jpa.repository.Query;
import org.springframework.data.repository.query.Param;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ public void doFilterInternal(HttpServletRequest request, HttpServletResponse res

PrintWriter out = response.getWriter();
out.print(json);

return;
}
}

Expand Down

0 comments on commit 2cae7f3

Please sign in to comment.