의존성 추가 먼저 프로젝트에 MapStruct를 추가해야 합니다. Gradle 또는 Maven 프로젝트에 다음 의존성을 추가합니다. Gradle: implementation 'org.mapstruct:mapstruct:1.4.2.Final' annotationProcessor 'org.mapstruct:mapstruct-processor:1.4.2.Final' Maven: org.mapstruct mapstruct 1.4.2.Final org.mapstruct mapstruct-processor 1.4.2.Final provided DTO와 Entity 클래스 생성 다음과 같이 DTO와 Entity 클래스를 생성합니다. @Getter @Setter @NoArgsConstructor @AllArgsCons..