Merged
Conversation
CI에서 동작 가능한 코드 수정을 진행했습니다. 코드 스타일을 준수할 수 있도록 몇몇 파일 수정을 진행했습니다.
로그아웃, pw변경에 사용될 AuthTokenDTO를 생성했습니다
category 전체조회, 매장조회, 생성, 수정, 삭제 기능의 service, controller를 구현했습니다. 권한 controller에서 preauthroize로 관리 생성, 수정, 삭제 - ADMIN 조회는 authorized면 가능 store관련 코드 storecontroller의 조회, 수정, 삭제에 대한 접근권한을 설정했습니다. (이에 따라 securityconfig 파일에서 경로 삭제) -> storeservice에서 비지니스로직 처리해주시면됩니다.
DB를 연동해서 실행 가능한지 확인합니다. main으로 브랜치 PR시 보안 문제를 검사합니다.
## Summary - main 브랜치와의 merge conflict 해결 - `deploy.yml`의 Dockerfile 경로를 `./Docker/Dockerfile`로 유지 Co-authored-by: yunjeong <99129298+dbswjd7@users.noreply.github.com> Co-authored-by: Yeojun <52143231+Yun024@users.noreply.github.com> Co-authored-by: first-lounge <137966925+first-lounge@users.noreply.github.com>
메뉴 main 수정 --------- Co-authored-by: yoonchulchung <yoonchul005@gmail.com> Co-authored-by: dbswjd7 <yj2171063@ewhain.net> Co-authored-by: yeojun <yeojun@yeojunui-MacBookPro.local> Co-authored-by: eqqmayo <eqqmayo@gmail.com> Co-authored-by: Yoonchul Chung <84674889+Yoonchulchung@users.noreply.github.com> Co-authored-by: Yeojun <52143231+Yun024@users.noreply.github.com> Co-authored-by: yunjeong <99129298+dbswjd7@users.noreply.github.com> Co-authored-by: eqqmayo <144116848+eqqmayo@users.noreply.github.com>
메뉴 Service 로직 수정 메뉴 및 메뉴 옵션 DTO 수정 메뉴 및 메뉴 옵션 업데이트 관련 DTO 파일 삭제 메뉴 Controller 수정 메뉴 및 메뉴 옵션 Repository 수정 메뉴 api 수정 --------- Co-authored-by: yoonchulchung <yoonchul005@gmail.com> Co-authored-by: Yoonchul Chung <84674889+Yoonchulchung@users.noreply.github.com>
…ket/Spot into feat/224-spring-gateway
spring gateway를 구성하였음 - 라우팅 - User 8081 - Order 8082 - Store 8083 - Payment 8084 - 추가로 /api/login, /api/join, /api/auth/refresh도 user-service로 라우팅해 로그인 동작하도록 하였음 - jwt 인증은 gateway가 아닌 기존 로직처럼 filter에서 수행하는 코드 OpenFeign - FeignCommonConfig에서 feign관련 설정 파일 관리 - 공통error처리 로직 작성 - 내부 feign 통신에서도 Header intercept해서 jwt토큰 인가해 적용 --------- Co-authored-by: Yoonchul Chung <84674889+Yoonchulchung@users.noreply.github.com> Co-authored-by: first-lounge <137966925+first-lounge@users.noreply.github.com> Co-authored-by: Yeojun <52143231+Yun024@users.noreply.github.com> Co-authored-by: yoonchulchung <yoonchul005@gmail.com> Co-authored-by: yeojun <yeojun@yeojunui-MacBookPro.local> Co-authored-by: eqqmayo <eqqmayo@gmail.com> Co-authored-by: eqqmayo <144116848+eqqmayo@users.noreply.github.com> Co-authored-by: first-lounge <zxcz9878@gmail.com>
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.
admin 대시보드에서 조회 timeout이 발생하는 문제를 해결했습니다.
기존 내용
: AdminStatsService의 주문 영역(getOrderStats)에서 조회 속도가 느려지고 있었습니다.
개선 내용
Admin 관련 주문 조회 로직을
InternalOrderAdminService로 분리하고, 다음과 같이 DB 중심 집계 방식으로 구조를 개선했습니다.추가로
BE: storename, 가격을 불러오는 로직 추가 필요
FE: 이에 따른 수정 필요