java8新特性与springboot结合使用

本文探讨了如何在SpringBoot应用中利用Java8的新特性,特别是Stream API,包括filter进行过滤,groupingBy进行分组,distinct实现去重等操作。文章通过实体类、Repository层和服务层的示例展示了这些方法的实际应用。
摘要由CSDN通过智能技术生成

前言

今天和大家探讨java8新特性,主要从以下两方面stream、foreach来讲述相关的使用方法,主要涉及了stream流中的filter(过滤),groupingBy (分组),distinct(去重),根据某种属性去重…等

实体类

package com.example.student.entity;
import com.fasterxml.jackson.annotation.JsonInclude;
import lombok.Getter;
import lombok.Setter;

import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.Table;
import java.io.Serializable;

/**
 * @Desc 学生实体类
 */
@Table(name = "student")
@Entity
@Setter
@Getter
@JsonInclude(JsonInclude.Include.NON_NULL)
public class Student implements Serializable {
   
    @Id
    @GeneratedValue
    private Integer id;
    private String name;
    private Integer age;
    private String grade;
    private Integer weight;// 排序字段
}

repository层

package com.example.student.repository;

import com.example.student.entity.Student;
import org.springframework.data.repository.CrudRepository;

import java.util.Collection;

/**
 * sql语句
 */
public interface StudentRepository extends CrudRepository<Student,Integer> {
   
    Integer deleteAllByIdIn(Collection
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值