Dto 클래스 추출 리팩토링
@PutMapping("users/{id}") // 수정
public UsersUpdateResponseDto updateUser(@PathVariable("id") Long id,
@RequestBody @Valid UserApiController.UsersUpdateRequestDto request) {
}
별도의 dto 패키지 분리 없이 컨트롤러 내에서 사용했지만 게시글 엔티티가 생기면서
컨트롤러 안에 dto가 10개쯤 생겨서 분리했다.
Author And Source
이 문제에 관하여(Dto 클래스 추출 리팩토링), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@agugu95/Dto-클래스-추출-리팩토링저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)