You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
├── common/ # 공통 모듈
├── database/ # 데이터베이스 모듈
├── domain/ # 비즈니스 로직 모듈
├── producer/ # RabbitMQ 프로듀서 모듈
├── consumer/ # RabbitMQ 컨슈머 모듈
└── emulator/ # SSE 모듈
Package 구성
└── Base Domain
├── application # Application 서비스 레이어 (Application Service ...)
├── infrastructure # 외부 시스템 연동 및 구현체 (JPA Repository, Projection DTO ...)
├── presentation # 컨트롤러 및 외부 인터페이스 (REST Controller, Request/Response DTO ...)
└── domain # 도메인 모델 및 비즈니스 규칙 (Entity, VO ...)