Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FIX] Multipart 요청 시 Filter 오류 해결 - #296 #297

Merged
merged 1 commit into from
Oct 9, 2024

Conversation

gardening-y
Copy link
Contributor

🔥Pull requests

⛳️ 작업한 브랜치

👷 작업한 내용

기존 코드에서 에러 로깅을 위해 있는 RequestBodyWrapper 클래스가 요청 본문을 읽을 때, 모든 요청에 대해 getReader()를 사용하여 본문을 문자열로 처리하고 있었습니다. 그러나 Multipart 요청의 경우, 파일 데이터와 텍스트 데이터가 함께 전송되는 바이너리 데이터 구조를 가지고 있습니다. 이를 일반 텍스트로 처리하려고 시도하면서 IOException이 발생했습니다.
즉, Multipart 요청의 본문은 파일 업로드나 기타 바이너리 데이터를 포함할 수 있기 때문에, BufferedReader로 읽으려는 시도가 실패하여 예외가 발생한 것입니다.

따라서, Content-Type을 확인하여 요청이 multipart/로 시작하는 경우, 본문을 읽지 않고 "Multipart 요청, 본문을 기록하지 않음"이라는 메시지를 설정하여 Multipart 요청에서 본문을 처리하려고 시도하는 부분을 건너뛰도록 수정하여 예외가 발생하지 않도록 해당 오류를 해결했습니다.

🚨 참고 사항

📟 관련 이슈

@gardening-y gardening-y self-assigned this Oct 9, 2024
@gardening-y gardening-y merged commit bda9759 into develop Oct 9, 2024
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[FIX] Multipart 요청 시 RequestBodyWrapper 오류 해결
1 participant