-
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
[Refactor] 세션에서 사용자의 정보를 자동으로 바인딩해주는 어노테이션 추가 #7
Open
Cass07
wants to merge
8
commits into
main
Choose a base branch
from
feature/member-session
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
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
이미지 등록/수정/삭제, 로컬 서버의 이미지 조회 추가 - ImageStore 인터페이스를 구현하는 로컬 서버에 이미지 파일을 저장하는 LocalImageStore 클래스 구현 - 존재하는 상품을 대상으로 이미지를 등록/수정/삭제하는 메소드 추가 - 로컬 서버의 이미지 파일을 조회해서 URL resource 로 리턴하는 메소드 추가
변수 명명규칙에 맞도록 변경, SSRF 취약점을 보완하기 위해 resource 조회 메소드 수정
contentType을 정상적으로 리턴하도록 수정하고, 존재하지 않는 이미지를 조회 시도할 때, Http Status Not Found를 리턴하도록 수정
PR 리뷰사항 수정 - ProductImage, Image 개념이 명확하게 구분되도록 객체명을 수정 - ImageController의 비즈니스 로직을 Service 레이어에 분리 - LocalImageStore에 파일 헤더, 확장자, 용량, 파일명 검증 과정을 추가 - Converter를 구현한 커스텀 converter를 component로 등록하여 사용하지 않고, 스프링의 conversionService에 등록하여 사용하도록 변경 - Closable한 객체를 사용하는 부분은 try with resource 문법으로 변경 - error를 처리할 시, logger에 추가적으로 stack trace를 기록하도록 변경
Update 비즈니스 로직과 컨트롤러를 삭제 - 별도의 Update 로직을 사용하지 않고, 사용자가 Delete 후 Post 하도록 변경
ProductImageFacade에서 동시성 제어 추가 - NamedLock을 사용할 수 있게 해 주는 NamedLockManager 추가 - ProductImageFacade의 비즈니스 로직을 NamedLockManager의 로직으로 감싸 네임드 락이 적용되도록 함
누락된 Private 생성자를 추가하고, long 변수의 값을 초기화하는 계산식의 결과가 long 타입이 되도록 값을 변경
Controller에서 SessionDto 객체의 값을 바인딩해주는 MemberSession 어노테이션 추가 - Session과 SessionManageUtils을 직접 호출하지 않고, MemberSessionArgumentResolver를 통해서 MemberSession annatation이 사용된 매개 변수에 결과값을 바인딩하도록 변경
Jacoco Test Coverage Report
|
Quality Gate passedIssues Measures |
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.
작업 내역 개요
HttpSession 객체를 받아 직접 SessionManageUtils을 호출하여 사용자의 정보를 구하는 로직이 반복적으로 사용되어, 이를 어노테이션을 통해 처리하도록 리팩토링