1
2
3
4
5
|
ObjectMapper mapper = new ObjectMapper();
mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false);
List<testVO> list = mapper.convertValue(model.get("list"),
TypeFactory.defaultInstance().constructCollectionType(List.class, testVO.class));
|
cs |
만약 vo가 a, b, c라면
프론트에서 요청할 때의 객체는 a, b
mapper로 변환하면 list안에도 a,b만 포함된 객체만 만들어졌던..
잘 기억이 안나서 죄송합니다..
'Tip' 카테고리의 다른 글
[cubrid] column안에 줄바꿈 처리 및 행의처음 삭제 (0) | 2021.08.19 |
---|---|
[gitlab-ci] (주먹구구식) 수정된 파일만 maven build (docker) (0) | 2021.08.19 |
[전자정부프레임워크] 경량 mariadb log4jdbc 연결 오류 (0) | 2021.05.25 |
[Intellij] 2019 use camelHumps tip (0) | 2021.05.25 |
[docker] nginx port 변경 (0) | 2021.05.25 |