Table of Contents
Java – Map to Dto
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
예제
import com.fasterxml.jackson.databind.ObjectMapper
ObjectMapper mapper = new ObjectMapper();
Dto result = mapper.convertValue(testMap,Dto.class);
List<Dto> results = mapper.convertValue(testList,Mapper.getTypeFactory().defaultInstanct().constructCollectionType(List.class, Dto.class));