-
Notifications
You must be signed in to change notification settings - Fork 1
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
상품 등록 기능 구현 #26
base: main
Are you sure you want to change the base?
상품 등록 기능 구현 #26
Conversation
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.
지난번 PR때 제가 확인을 못한거 같은데 혹시 ProductRepository에 findById랑 findProductResponseById를 따로 두신 이유가 있는지 궁금합니다.
제 개인적인 생각에는 상품 조회시 응답 객체에 재고 필드가 필요 없지 않을까 하는데 이 부분도 같이 얘기 나눠보면 좋을 것 같아요
수고하셨습니다!
|
||
ProductResponse productResponse = productService.findProductResponseById(id); | ||
|
||
return ResponseEntity.ok().body(GenericResponse.of(productResponse)); | ||
} | ||
|
||
@PostMapping | ||
@PreAuthorize("hasRole('ADMIN')") |
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.
SecurityConfig에도 권한 설정이 되어 있던데 Config에서 할지 컨트롤러에서 따로 붙힐지 의견 나눠보고 통일시키는게 좋을 것 같습니당
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.
이것도 맞는 말씀이네요 컨트롤러에서 따로 붙이기엔 이미 securityConfig에 다 설정이 되어있으니 이부분도 지우고 다시 push하겠습니다.
그리고 find entity랑 응답 객체를 따로 둔건 아직 조회 시 어떤 필드를 필요로 할지 안정한 것 같아서 나중에 정한 다음 필요없는 필드 제외할 때 편하게 하려고 따로 뒀습니당
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.
아 조회쿼리를 따로 둔걸 말씀하신거면 그냥 필요없는 필드는 쿼리부터 없이 조회하는게 취향이라 그렇습니다ㅎㅎ
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.
내일은 상품에 들어갈 필드 한 번 의논해보면 될 거 같네요 ㅎㅎ
|
||
ProductResponse productResponse = productService.findProductResponseById(id); | ||
|
||
return ResponseEntity.ok().body(GenericResponse.of(productResponse)); | ||
} | ||
|
||
@PostMapping | ||
@PreAuthorize("hasRole('ADMIN')") | ||
public ResponseEntity<GenericResponse<Void>> create(@RequestBody @Validated(ValidationSequence.class) ProductForm productForm) { |
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.
GericResponse.of(String message)로 되어있어서 반한 타입은 Void대신 String으로 수정해야 될 것 같습니다.
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.
그렇네요 수정하고 push하겠습니다
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.
수정하신거 확인했습니다.
내일 오전에 다른 분들 코멘트 없으면 머지하도록 하겠습니다.
📌 과제 설명
상품 등록 기능 구현 및 테스트
👩💻 요구 사항과 구현 내용
GlobalControllerAdvise
에 추가testSecurityConfig
추가✅ 피드백 반영사항
@Transactional(readOnly = true)
전역화 했습니당✅ PR 포인트 & 궁금한 점
close #11