///
Search
Duplicate

Code Convention

Entity
setter 사용 금지
메소드 사용
Builder 사용
column 선언은 웬만하면 wrapper class로 선언
하지만 primitive type이 필요할 때가 있다면 사용하고, 리뷰할 때 질문과 답변
Custom ResponseEntity 사용
status, message, data
DTO
column 불가
api 1개당
중복된 요청일 때, API별로 만들기
중복된 응답일 때, DomainInfoResponse, DomainInfoDetailResponse 만들어서 활용
네이밍: 도메인 + 기능 + 요청or응답 (Requset, Response)
UserCreateResponse DomainDeleteRequest
Markdown
복사
Response: @Builder, @Getter
Request: @Getter
Repository
optional도 허용
method로 사용
Service
update → transactional, LAZY → tr = readonly = true
패키지 구조
domain / global / infra (도메인 별로)
User
oauth2.0
yml vs proiperties = yml
database name
공통 response
BaseTimeEntity
Exception
CustomException : httpStatus, message
ExceptionCode :
BAD_REQUEST 400
UNAUTHORIZED 401
FORRBIDDEN 403
NOT_FOUND 404
CONFLICT 409
naming
BAD_REQUEST_XX_XXXXX_XXX
CustomException 상속받아서 DomainCustomException 만들기. 처리는 CustomException 하나로
advice 사용
Swagger 적용
convention은 구성 후에 작성
Quiz 답은 중복답일 경우에 :::
answer1 ::: answer2 ::: answer3
이런 식으로 ::: 로 구분해서 한 줄로 받음
CQRS 도입에 대해서… 보류
service impl 분리에 대해서… 보류