欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

jdk8 stream的分组功能list.stream().collect(Collectors.groupingBy(对象Vo::分组标志字段))

程序员文章站 2022-06-01 14:04:56
...

list.stream().collect(Collectors.groupingBy(对象Vo::分组标志字段));
业务场景:
表结构大概这个样子:
jdk8 stream的分组功能list.stream().collect(Collectors.groupingBy(对象Vo::分组标志字段))
前端返回样式
{
1:[
{ key:value,
key:value,

},
{ key:value,
key:value,

},

],
2:[
{ key:value,
key:value,

},
{ key:value,
key:value,

},

],

}
SQL 写起来的话 group by 自己经验还不太够,就想着如何在逻辑层处理,发现jdk8的stream() 有分组的方法,就百度了下,用如下示例完美解决。

Map<String, List<Student>> collect = stuList.stream().collect(Collectors.groupingBy(Student::getClassId));
     for(Map.Entry<String, List<Student>> stuMap:collect.entrySet()){
          String classId = stuMap.getKey();
          List<Student> studentList = stuMap.getValue();
          System.out.println("classId:"+classId+",studentList:"+studentList.toString());
     }