Closed
Description
이슈 개요
Driving Adapter를 구현하여 HTTP 요청을 애플리케이션의 내부 비즈니스 로직과 연결합니다.
작업 목록
- 진규 님 작업
- ReadUseCase 구현
- QueryController 구현
- QueryController test
- 경우 님 작업
- CreateUseCase구현
- UpdateUseCase구현
- DeleteUseCase구현
- CommandController 구현
- CommandController test
- 공통 작업
- Mapper 구현
- Dto 구현
부연 설명
- REST Controller를 생성하여 HTTP 요청을 처리합니다.
- Controller는 UseCase를 호출해 입력 데이터를 비즈니스 로직에 전달합니다.
- Mapper는 DTO 데이터를 도메인 객체로 변환하거나 역변환합니다.
- DTO는 외부 요청 및 응답에 사용되는 데이터 구조를 정의합니다.