-
Notifications
You must be signed in to change notification settings - Fork 1
백엔드 개발 컨벤션
Due edited this page Jan 21, 2025
·
1 revision
기본적으로 GoogleStyle을 적용한다.
- Controller
- default : {entity}Controller
- Service
- default : {entity}{function}Service
- DTO
- response dto는 static메서드를 통해 생성한다.
ex) public static ClubDetailedPageResponse createClubDetailedPageResponse()
- response dto는 static메서드를 통해 생성한다.
- 예외는 ErrorCode에 요소를 추가하고, RestApiException을 throw하는 방식으로 처리한다.