-
Notifications
You must be signed in to change notification settings - Fork 112
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
전남대 BE_김보민 5주차 과제 (3단계) #433
Open
KBM05haruin30
wants to merge
37
commits into
kakao-tech-campus-2nd-step2:kbm05haruin30
Choose a base branch
from
KBM05haruin30:step3333
base: kbm05haruin30
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.
Open
전남대 BE_김보민 5주차 과제 (3단계) #433
KBM05haruin30
wants to merge
37
commits into
kakao-tech-campus-2nd-step2:kbm05haruin30
from
KBM05haruin30:step3333
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
로그인 시 발급받은 accessToken을 활용하여 email 추출합니다. 추출한 email을 가지고 Member에 저장하고, jwtTokne을 발급받습니다. 그 후 localStorage에 저장하기 위해 redirectAttributes를 사용하여 보내줍니다.
KakaoLoginController에서 넘긴 값들을 저장하기 위해 수정
Order를 통해 수량을 감소시키므로 불필요하다 생각하여 제거했습니다.
주문을 하면 해당 상품 옵션의 수량이 차감되고 위시 리스트에 있는 경우 위시 리스트에서 삭제됩니다.
버튼을 누르면 주문 폼으로 이동합니다.
주문 버튼을 누르면 jwt토큰을 이용하여 누구의 주문인지 알 수 있습니다. localStorage에 있는 accessToken을 같이 넘겨 카카오톡 메시지 보내기에 대비합니다.
TemplateObjectDTO를 사용하고 ObjectMapper를 이용해 변환시켜줍니다.
OpenAPI와 Swagger를 사용하여 API 문서를 만들었습니다.
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.
3단계
궁금한 점
API 문서 만들기라고 쓰여있어서 README.md에 작성을 해야 하는 것인가 잘 몰랐습니다. 그래서 검색으로 'API 문서 만들기' 를 검색하니 Swagger를 사용하는 방법과 spring REST docs를 사용하는 방법을 찾았습니다. 2가지 방법 중 Swagger를 사용하는 방법을 택했습니다. Swagger를 사용하면 자동으로 API 문서를 생성해준다고 하여 간편한 방법 같아 사용했습니다. 애플리케이션을 실행시킨 후 밑의 링크로 접속하면 API 문서를 확인할 수 있습니다.
http://localhost:8080/swagger-ui.html
API 문서를 처음 작성하려다 보니 간편하게 사용할 수 있는 Swagger를 사용했습니다. 멘토님께서는 Swagger를 사용하는 방법과 spring REST docs를 사용하는 방법 중 어느 방법을 선호하시는지 궁금합니다.