5주차 부터는 매일 진행하는 스크럼에서 나눈 내용을 기록할 계획입니다1주 간의 수업과 과제를 진행하면서 새로 알게 된 개념이나 잘못 알았던 개념에 대해 이야기 해봅시다.MapStructDTO ↔ ENTITY 간에 매핑을 간편하게 할 수 있도록 도와줌. Spring : MapStruct의 사용법 및 ModelMapper와의 비교MapStruct의 사용법 및 ModelMapper와의 비교 Controller, Service, Repository 등 레이어 간 데이터를 주고받을 때나 비즈니스 로직에서 하나의 객체를 타입이 다른 객체로 형(Type) 변환하거나 여러 객체를 다른 객체로 합치는 일은 매우 빈번하게 발생합니다. 이런 작업을 개발자가 모두 직접 하게되면 발생하는 문제점을 몇 가지 나열해 보면 다음과 같습니다. 재미가 없고 반복적이고 코드 중복이 발생하기 쉽습니다.https://dev-splin.github.io/spring/Spring-ModelMapper,MapStruct/InstallationYou can obtain a distribution bundle containing the MapStruct binaries, source code and API documentation from GitHub. If you're using Maven to build your project add the following to your pom.xml to use MapStruct: ... 1.4.2.Final ... org.mapstruct mapstruct ${org.mapstruct.version} ...https://mapstruct.org/documentation/installation/