모델맵핑
-
model mapping 라이브러리 MapstructJAVA 2021. 7. 8. 23:02
Mapstruct란? 모델간 맵핑을 쉽게 해주는 라이브러이다 ex) entity dto -컴파일 시점에 맵핑클래스를 생성함(그래서 매우 좋음 바로바로 확인가능) -ModelMapper 보다 맵핑 성능이 훨씬 좋음 1. 라이브러리 추가 mapstruct만 추가해주면된다. dependencies { implementation 'org.springframework.boot:spring-boot-starter-validation' implementation 'org.springframework.boot:spring-boot-starter-web' implementation 'org.springframework.cloud:spring-cloud-starter-netflix-hystrix' implementatio..