Skip to content
Advertisement

Java code refactor with stream Collectors.groupingby()

I try to get a Map with Collectors.groupingBy() but I have no idea how to create…

I have a List from jpa jquerydsl

JavaScript

the data is like

[memberId=1, departmentId=1]
[memberId=1, departmentId=2]
[memberId=2, departmentId=3]
[memberId=3, departmentId=4]

this is my Member class

JavaScript

I want to parse tuple list to member Map By member id

data is like

JavaScript

this is my code without Collectors.groupingBy()

JavaScript

I want to refactor my code with Collectors.groupingBy()

JavaScript

But I have no idea

How to create ? thanks…!

Advertisement

Answer

Maybe this code answers your question

JavaScript

The code prints

JavaScript

Which I think is what you want. I used org.apache.commons.lang3.tuple.Pair where you have another tuple class. A added some helper methods to the Member class to make the code a bit cleaner. The trick is using toMap and supplying a merge function here (member1, member2) -> member1.addAllDepartmentId(member2.departmentIds) to combine the department IDs.

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement