//상위 노드가 존재하지 않는 루트 노드List<DeptVO>root=rows.stream().filter(ele->Objects.equals(ele.getId(),ele.getParentId())).toList();//루트 노드를 제외한 자식 노드 목록//removeIf 때문에 ArrayList로 사용ArrayList<DeptVO>leaf=rows.stream().filter(ele->!Objects.equals(ele.getId(),ele.getParentId())).collect(Collectors.toCollection(ArrayList::new));
중첩 데이터 생성하기
/**
* 중첩 데이터 생성
* @param root 루트 데이터
* @param leaf 전체 데이터
*/publicvoidgetNestedRows(List<DeptVO>root,ArrayList<DeptVO>leaf){for(DeptVOrow:root){if(leaf.isEmpty()){break;}List<DeptVO>children=leaf.stream().filter(ele->Objects.equals(row.getId(),ele.getParentId())).toList();if(children.isEmpty()){continue;}children.forEach(child->{child.setLevel(row.getLevel()+1);});row.setChildren(children);leaf.removeIf(ele->Objects.equals(row.getId(),ele.getParentId()));//처리 완료한 데이터 삭제getNestedRows(row.getChildren(),leaf);//재귀 호출}}
사용 예시
List<DeptVO>root=rows.stream().filter(ele->Objects.equals(ele.getId(),ele.getParentId())).toList();ArrayList<DeptVO>leaf=rows.stream().filter(ele->!Objects.equals(ele.getId(),ele.getParentId())).collect(Collectors.toCollection(ArrayList::new));this.getNestedRows(root,leaf,result);//중첩화 진행