Feat : (Damain) 이미지(파일) 업로드 Aws Multipart Upload + Pre-Signed URL 추가#80
Merged
Feat : (Damain) 이미지(파일) 업로드 Aws Multipart Upload + Pre-Signed URL 추가#80
Conversation
2 tasks
uoo6uoow
reviewed
Jun 7, 2025
| InitiateMultipartUploadResult initiateResult = amazonS3.initiateMultipartUpload( | ||
| new InitiateMultipartUploadRequest(bucket, key) | ||
| .withObjectMetadata(new ObjectMetadata()) | ||
| ); |
Contributor
There was a problem hiding this comment.
이런 부분에서는 따로 예외, 에러 처리를 해주지 않아도 되나요?
| return new MultipartPreSignedUrlResponseDTO(uploadId, key, imageUrl, preSignedUrls); | ||
| } catch (Exception e) { | ||
| log.error("Multipart Pre-Signed URL 생성 중 에러 발생", e); | ||
| throw new RuntimeException("Multipart Pre-Signed URL 생성 중 에러 발생"); |
Contributor
There was a problem hiding this comment.
이런 에러 같은 경우는 기존에 만들어둔 에러 response에 들어가지 않는 종류인가요?
| }); | ||
| } catch (Exception e) { | ||
| log.error("Multipart Upload 완료 처리 중 에러 발생", e); | ||
| throw new RuntimeException("Multipart Upload 완료 처리 중 에러 발생"); |
This file contains hidden or 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
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.
🌱관련 이슈
📌작업 내용 및 특이사항
📝참고사항
📚기타