결제 전환 목표 아키텍처 정의 (SPRING-ARC-SPLIT-1783827796)

This commit is contained in:
forge-bot 2026-07-12 03:47:11 +00:00
parent 9e5b20e584
commit 23abbbd301

View file

@ -0,0 +1,9 @@
# Package Responsibility and Forbidden Dependencies
| Package | Responsibility | Forbidden Dependencies |
|---------------|-------------------------------------------------------|-------------------------------|
| Controller | Handles incoming requests and responses | Service -> Repository |
| Service | Contains business logic and service level operations | Repository -> Service |
| Repository | Manages data persistence and retrieval | Controller -> Repository |
| Domain | Defines domain model and logic | Not applicable |
| Integration | Interfaces with external services | Service -> Integration |