使用“流”抽取对象字段
Posted xiaozhengyu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用“流”抽取对象字段相关的知识,希望对你有一定的参考价值。
抽取对象数据_流
@Data
@NoArgsConstructor
@AllArgsConstructor
public class Student{
private String studentId;
private String studentName;
}
实例1:抽取学生ID
List<Student> studentList = studentRepository.findAll();
Set<String> studentIdSet = studentList.stream()
.map(Student::getStudentId())
.collect(Collectors.toSet());
以上是关于使用“流”抽取对象字段的主要内容,如果未能解决你的问题,请参考以下文章
IDEA - 抽取方法参数快速抽取(方法,变量,字段,常量,参数等),重构,优化代码
[mybatis]动态sql_sql_抽取可重用的sql片段