-
Notifications
You must be signed in to change notification settings - Fork 0
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
[FEAT] AWS S3를 이용한 이미지 업로드 구현 #13
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
into feat/#8-s3_file_upload
hyeyeonnnnn
approved these changes
Jan 7, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
수고하셨습니다 !! 🫶
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
📌 관련 이슈
closed #8
✨ 어떤 이유로 변경된 내용인지
S3 버킷에 이미지 업로드하기
다음 2가지의 방식으로 이미지 업로드를 구현하였고, 각각에 대한 정상 동작을 확인했습니다!
Multipart 로 이미지 파일을 직접 S3 버킷에 업로드하는 방식
요청 파라미터로 MultipartFile 타입의 이미지 파일 자체를 받아와 서버에서 직접 S3 버킷에 업로드하는 방식입니다.
PreSigned URL을 요청하는 방식
이는 이미지 업로드 요청이 클라이언트로부터 들어왔을 때, PreSigned Url을 생성하여 반환해주고 클라이언트가 이 URL을 통해 S3 버킷에 파일을 업로드하는 방식입니다.
서버에서 이미지를 직접 업로드하는 데 따르는 트래픽 부담을 줄이기 위해 2번 방식을 가져갈 생각입니다!! 일단 2개 모두 구현해두었으니 참고해주세요 :)
나중에 미션에 대한 비즈니스 로직에 활용한다면, 각 오늘의 미션에 대해 인증 사진 업로드와 30일 이후에 삭제하는 부분에서 해당 메서드들이 호출될 것 같습니다 ~~
도커 이미지 빌드를 위한 docker-compose.yml 추가
🙏 검토 혹은 리뷰어에게 남기고 싶은 말