Response DTO란도메인 엔티티를 외부에 그대로 노출하지 않고 프론트에서 필요한 형태로 변환해 전달하는 역할즉, Response DTO는 도메인의 상태를 읽기 전용으로 표현하는 포장지다.그렇기 때문에 엔티티를 주입 DTO 안에서 필요한 정보만 꺼내 포맷팅하는 방식이 자연스럽다.주입 해야 하는 경우 - 필드 수처음에 Response DTO 만들 때 필드를 직접 하나씩 넣는 방식을 택했다.return new UpdateCommentResponse( comment.getId(), comment.getUser().getUsername(), comment.getSchedule().getTitle(), comment.getContent(), comment.getModifiedAt()..