MapStruct >dependencies implementation 'org.mapstruct:mapstruct:1.4.2.Final' annotationProcessor 'org.mapstruct:mapstruct-processor:1.4.2.Final' >Mapper : 필요할 때마다 Entity를 Dto로, Dto를 Entity로 변경할 수 있게 구현해둔 클래스 >@Mapper(componenetModel = "spring") : MapStruct를 사용하기위한 애너테이션 : Spring Bean으로 등록해주는 속성값. : Mapper 역할을 하는 인터페이스에 붙인다. >Mapper 인터페이스를 구현하는 클래스(~~Impl) : MapStruct가 애플리케이션 실행(혹은 build task)시 자..