-
Notifications
You must be signed in to change notification settings - Fork 0
Feature: mene store Exception 처리 #277
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
Conversation
|
Caution Review failedThe pull request is closed. Walkthrough테스트 의존성(Testcontainers) 추가. 관리자 API에 예약/대기 Redis 로직을 검증하는 단위/통합 테스트 3종 추가. 사용자 API의 MenuService에 StoreRepository 의존성 및 가게 존재 확인 로직 도입(미존재 시 예외). 공개 API 시그니처 변화 없음. Changes
Sequence Diagram(s)sequenceDiagram
participant Client
participant MenuService
participant StoreRepository
participant MenuRepository
Client->>MenuService: getAllMenusByStoreId(storeId)
MenuService->>StoreRepository: existsById(storeId) / findById(...)
alt store not found
MenuService-->>Client: throw StoreNotFoundException
else store exists
MenuService->>MenuRepository: findAllByStoreId(storeId) / findById(...)
MenuService-->>Client: Menus / Menu
end
Estimated code review effort🎯 3 (Moderate) | ⏱️ ~20 minutes Possibly related issues
Possibly related PRs
Suggested labels
Suggested reviewers
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (5)
✨ Finishing Touches
🧪 Generate unit tests
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. CodeRabbit Commands (Invoked using PR/Issue comments)Type Other keywords and placeholders
CodeRabbit Configuration File (
|
작업 요약
Issue Link
#276
문제점 및 어려움
해결 방안
Reference
Summary by CodeRabbit