使用“流”抽取对象字段

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());

以上是关于使用“流”抽取对象字段的主要内容,如果未能解决你的问题,请参考以下文章

json数据怎么抽取实体

IDEA - 抽取方法参数快速抽取(方法,变量,字段,常量,参数等),重构,优化代码

[mybatis]动态sql_sql_抽取可重用的sql片段

11SpringBoot-CRUD-thymeleaf公共页面元素抽取

使用thymeleaf模板引擎抽取公共页面

对象中可选字段的流类型