-
Spring - modelMapper list 매핑하기Spring 2022. 5. 12. 18:30반응형
List<Person> list = modelMapper.map(sourceList, List.class);
위의 코드는 아래와 같은 warning이 발생한다.
warning: [unchecked] unchecked conversion
required: List<Person>
found: Listwarning을 없애주는 방법은 아래 코드같이 해주면 된다.
List<Person> list = sourceList.stream() .map(source -> modelMapper.map(source, Person.class)) .collect(Collectors.toList());
반응형'Spring' 카테고리의 다른 글
Request header is too large 해결방법 (0) 2022.05.30 Spring - ThreadPoolExecutor reject policy 설정 (0) 2022.05.30 Spring - JPA 에러 Unable to locate Attribute with the the given name on this ManagedType (0) 2022.05.26 Spring - Bean Thread safe (0) 2022.05.03 Spring - bean 주입과 static 메서드 (0) 2022.05.02