-
Notifications
You must be signed in to change notification settings - Fork 171
[4기 - 박세연] SpringBoot Part3 2차 Weekly Mission 제출합니다. #863
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
Open
parksey
wants to merge
28
commits into
prgrms-be-devcourse:parksey
Choose a base branch
from
parksey:parksey3
base: parksey
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 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
…예외 처리하는 ApiAdvisor클래스 추가
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.
먼저 좋게 봐주셔서 감사합니다!
개인 프로젝트 등으로 늦게 확인하게 되었고, 그에 따라 피드백 반영이 늦어졌습니다. 죄송합니다 😢
✅ 피드백 반영사항
전반리뷰
패캐지 구성이
로 되어있었습니다.
당시에는
voucher
,customer
,ui(writter & reader)
에 대한 도메인으로 분류한 후 api나 web같은 경우 한 곳에서 보게 되면 더 편하지 않을까 라는 생각으로 저렇게 구성했었는데,말씀을 듣고,
는 단점들이 보였습니다.
따라서 api와 web같은 경우 클라이언트에서의 요청을 처리하기 때문에 controller내부로 옮겼고, 세부적으로
api
,web
으로 분류하여 구성했습니다.###Test코드 리뷰
기존 console과 내부 In-memory상황과 JDBC를 사용했을 대의 상황에 대해 테스트를 진행했는데, 부족한 부분과 테스트 코드가 동작이 안되는 부분이 있었습니다.
따라서 리뷰주신 부분 보강하였습니다.
[Service test]
[DTO & Domain]