返回顶部
首页 > 资讯 > 后端开发 > Python >SpringDataJPA之JpaRepository的使用
  • 172
分享到

SpringDataJPA之JpaRepository的使用

2024-04-02 19:04:59 172人浏览 薄情痞子

Python 官方文档:入门教程 => 点击学习

摘要

目录1 JpaRepository1.1 JpaRepository接口定义1.2 内置方法1.2.1 CrudRepository<T, ID>提供的方法1.2.2 P

JpaRepository是SpringBoot Data JPA提供的非常强大的基础接口。

1 JpaRepository

1.1 JpaRepository接口定义

JpaRepository接口的官方定义如下:

@NoRepositoryBean
public interface JpaRepository<T, ID> extends PagingAndSortingRepository<T, ID>, QueryByExampleExecutor<T>

可以看出JpaRepository继承了接口PagingAndSortingRepository和QueryByExampleExecutor。而PagingAndSortingRepository又继承CrudRepository。因此,JpaRepository接口同时拥有了基本CRUD功能以及分页功能。

当我们需要定义自己的Repository接口的时候,我们可以直接继承JpaRepository,从而获得SpringBoot Data JPA为我们内置的多种基本数据操作方法,例如:

public interface UserRepository extends JpaRepository<User, Integer> {
}

1.2 内置方法

1.2.1 CrudRepository<T, ID>提供的方法

    
	<S extends T> S save(S entity);
	
	<S extends T> Iterable<S> saveAll(Iterable<S> entities);
	
	Optional<T> findById(ID id);
	
	boolean existsById(ID id);
	
	Iterable<T> findAll();
	
	Iterable<T> findAllById(Iterable<ID> ids);
	
	long count();
	
	void deleteById(ID id);
	
	void delete(T entity);
	
	void deleteAll(Iterable<? extends T> entities);
	
	void deleteAll();

1.2.2 PagingAndSortingRepository<T, ID>提供的方法

    
	Iterable<T> findAll(Sort sort);
	
	Page<T> findAll(Pageable pageable);

1.2.3 JpaRepository<T, ID>提供的方法

    
	void flush();
	
	<S extends T> S saveAndFlush(S entity);
	
	void deleteInBatch(Iterable<T> entities);
	
	void deleteAllInBatch();
	
	T getOne(ID id);

JpaRepository<T, ID>还继承了一个QueryByExampleExecutor<T>,提供按“实例”查询的功能。

2 方法测试

下面对以上提供的所有内置方法进行测试,给出各方法的用法。

首先定义实体类Customer:

package com.tao.springboot.hibernate.entity;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.NonNull;
import lombok.RequiredArgsConstructor;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
@Entity
@Table(name = "tb_customer")
@Data
@NoArgsConstructor
@RequiredArgsConstructor
public class Customer {
    @Id
    @GeneratedValue(strategy = GenerationType.AUTO)
    @Column(nullable = false)
    private Long id;
    @Column(nullable = false)
    private String name;
    
    @Column(nullable = false)
    private Integer age;
}

然后定义接口CustomerRepository:

package com.tao.springboot.hibernate.repository;
import com.tao.springboot.hibernate.entity.Customer;
import org.springframework.data.jpa.repository.JpaRepository;
public interface CustomerRepository extends JpaRepository<Customer, Long> {
    
}

接下来对各个方法进行测试~

2.1 save

    
	<S extends T> S save(S entity);

测试代码:

    @GetMapping("/customer/save")
    public Customer crudRepository_save() {
        // 保存一个用户michael
        Customer michael = new Customer("Michael", 26);
        Customer res = customerRepository.save(michael);
        return res;
    }

测试结果:

2.2 saveAll

    
	<S extends T> Iterable<S> saveAll(Iterable<S> entities);

测试代码:

    @GetMapping("/customer/saveAll")
    public List<Customer> crudRepository_saveAll() {
        // 保存指定集合的实体
        List<Customer> customerList = new ArrayList<>();
        customerList.add(new Customer("Tom", 21));
        customerList.add(new Customer("Jack", 21));
        List<Customer> res = customerRepository.saveAll(customerList);
        return res;
    }

测试结果:

2.3 findById

    
	Optional<T> findById(ID id);

测试代码:

    @GetMapping("/customer/findById")
    public Customer crudRepository_findById() {
        // 根据id查询对应实体
        Optional<Customer> customer = customerRepository.findById(1L);
        if(customer.isPresent()) {
            return customer.get();
        }
        return null;
    }

测试结果:

2.4 existsById

    
	boolean existsById(ID id);

测试代码:

    @GetMapping("/customer/existsById")
    public boolean crudRepository_existsById() {
        // 根据id查询对应的实体是否存在
        return customerRepository.existsById(1L);
    }

测试结果:

2.5 findAll

    
	Iterable<T> findAll();

测试代码:

    @GetMapping("/customer/findAll")
    public List<Customer> crudRepository_findAll() {
        // 查询所有的实体
        List<Customer> customerList = customerRepository.findAll();
        return customerList;
    }

测试结果:

2.6 findAllById

    
	Iterable<T> findAllById(Iterable<ID> ids);

测试代码:

    @GetMapping("/customer/findAllById")
    public List<Customer> crudRepository_findAllById() {
        // 根据给定的id集合查询所有对应的实体,返回实体集合
        List<Long> ids = new ArrayList<>();
        ids.add(2L);
        ids.add(1L);
        List<Customer> customerList = customerRepository.findAllById(ids);
        return customerList;
    }

测试结果:

2.7 count

    
	long count();

测试代码:

    @GetMapping("/customer/count")
    public Long crudRepository_count() {
        // 统计现存实体的个数
        return customerRepository.count();
    }

测试结果:

2.8 deleteById

    
	void deleteById(ID id);

测试代码:

    @GetMapping("/customer/deleteById")
    public void crudRepository_deleteById() {
        // 根据id删除对应的实体
         customerRepository.deleteById(1L);
    }

测试结果:

删除前~~

删除后~~

2.9 delete(T entity)

	
	void delete(T entity);

测试代码:

    @GetMapping("/customer/delete")
    public void crudRepository_delete() {
        // 删除给定的实体
        Customer customer = new Customer(2L, "Tom", 21);
        customerRepository.delete(customer);
    }

测试结果:

删除前~~

删除后~~

2.10 deleteAll(Iterable<? extends T> entities)

	
	void deleteAll(Iterable<? extends T> entities);

测试代码:

    @GetMapping("/customer/deleteAll(entities)")
    public void crudRepository_deleteAll_entities() {
        // 删除给定的实体集合
        Customer tom = new Customer(2L,"Tom", 21);
        Customer jack = new Customer(3L,"Jack", 21);
        List<Customer> entities = new ArrayList<>();
        entities.add(tom);
        entities.add(jack);
        customerRepository.deleteAll(entities);
    }

测试结果:

删除前~~

删除后~~

2.11 deleteAll

	
	void deleteAll();

测试代码:

    @GetMapping("/customer/deleteAll")
    public void crudRepository_deleteAll() {
        // 删除所有的实体
        customerRepository.deleteAll();
    }

测试结果:

删除前~~

删除后~~

2.12 findAll(Sort sort)

    
	Iterable<T> findAll(Sort sort);

测试代码:

    @GetMapping("/customer/findAll(sort)")
    public List<Customer> pagingAndSortingRepository_findAll_sort() {
        // 返回所有的实体,根据Sort参数提供的规则排序
        // 按age值降序排序
        Sort sort = new Sort(Sort.Direction.DESC, "age");
        List<Customer> res = customerRepository.findAll(sort);
        return res;
    }

测试结果:

格式化之后发现,确实是按照age的值降序输出的!!!

2.13 findAll(Pageable pageable)

    
	Page<T> findAll(Pageable pageable);

测试代码:

    @GetMapping("/customer/findAll(pageable)")
    public void pagingAndSortingRepository_findAll_pageable() {
        // 分页查询
        // PageRequest.of 的第一个参数表示第几页(注意:第一页从序号0开始),第二个参数表示每页的大小
        Pageable pageable = PageRequest.of(1, 5); //查第二页
        Page<Customer> page = customerRepository.findAll(pageable);
        System.out.println("查询总页数:" + page.getTotalPages());
        System.out.println("查询总记录数:" + page.getTotalElements());
        System.out.println("查询当前第几页:" + (page.getNumber() + 1));
        System.out.println("查询当前页面的集合:" + page.getContent());
        System.out.println("查询当前页面的记录数:" + page.getNumberOfElements());
    }

测试结果:

以上为个人经验,希望能给大家一个参考,也希望大家多多支持编程网。

--结束END--

本文标题: SpringDataJPA之JpaRepository的使用

本文链接: https://lsjlt.com/news/140231.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
  • SpringDataJPA之JpaRepository的使用
    目录1 JpaRepository1.1 JpaRepository接口定义1.2 内置方法1.2.1 CrudRepository<T, ID>提供的方法1.2.2 P...
    99+
    2024-04-02
  • JPA中JpaRepository接口的使用方式
    目录JPAJpaRepository接口的使用SpringData的所有接口JpaRepository继承自定义接口的主意事项整体代码如下解决方案JPA JpaRepository接...
    99+
    2024-04-02
  • 使用SpringDataJpa创建中间表
    目录SpringDataJpa创建中间表JPA中间表(关系表)联合主键配置说明问题场景数据表结构实体代码idClass类代码实体类最终正确代码持久层配置SpringDataJpa创建...
    99+
    2024-04-02
  • SpringDataJpa的使用之一对一、一对多、多对多 关系映射问题
    目录SpringDataJpa的使用 -- 一对一、一对多、多对多 关系映射项目依赖项目配置sql文件(MySQL版)级联关系简述@OneToOne 一对一 关系映射1.无中间表,维...
    99+
    2024-04-02
  • SpringDataJPA基本/高级/多数据源的使用详解
    目录一、Spring Data JPA基本用法1、概念JPA由来JPA是什么Spring Data JPA2、快速上手1.添加依赖2.添加配置文件3.实体类4.Repository构...
    99+
    2024-04-02
  • 基于Spring Boot使用JpaRepository删除数据时的注意事项
    问题: 在Spring Boot中使用JpaRepository的deleteById(ID id)方法删除数据时,首先要使用existsById(ID id)方法判断数据...
    99+
    2024-04-02
  • 关于@Query注解的用法(SpringDataJPA)
    目录@Query注解的用法1.一个使用@Query注解的简单例子2.Like表达式3.使用Native SQL Query4.使用@Param注解注入参数5.SPEL表达式(使用时请...
    99+
    2024-04-02
  • SpringDataJPA在Entity中常用的注解介绍
    目录首先我们常用的注解包括接下来介绍关联关系注解首先我们常用的注解包括 @Entity、@Table、@Id、@IdClass、@GeneratedValue、@Basic、@Tra...
    99+
    2024-04-02
  • SpringDataJpa如何使用union多表分页条件查询
    目录如何使用union多表分页条件查询条件分页踩过的坑分享几个用到的mysql语法jpa执行原生sql union bug解决如何使用union多表分页...
    99+
    2024-04-02
  • SpringDataJpa怎么使用union多表分页条件查询
    本篇内容介绍了“SpringDataJpa怎么使用union多表分页条件查询”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!如何使用...
    99+
    2023-06-29
  • SpringDataJPA在Entity中常用的注解有哪些
    这篇文章主要介绍了SpringDataJPA在Entity中常用的注解有哪些,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。首先我们常用的注解包括@Entity、@Table、...
    99+
    2023-06-21
  • MySQL之mysqldump的使用
    ...
    99+
    2018-03-06
    MySQL之mysqldump的使用
  • Vue.js之VNode的使用
    什么是VNode 在vue.js中存在一个VNode类,使用它可以实例化不同类型的vnode实例,而不同类型的vnode实例各自表示不同类型的DOM元素。 例如,DOM元素有元素节...
    99+
    2024-04-02
  • goredis之redigo的使用
    目录安装链接RedisString类型操作设置过期时间List操作Hash表Redis连接池本文主要介绍了go redis之redigo的使用,分享给大家,具体如下: 安装 go-r...
    99+
    2024-04-02
  • Android之 WebView的使用
    一 简介 1 WebView是用来展示网页的控件,底层是google的WebKit的引擎。 比起苹果的WebView,webkit一些不足地方: 不能支持word等文件的预览纯标签加载,并不支持所有标签的加载不支持文件的下载,图片的放大...
    99+
    2023-09-12
    android webview java
  • Webpack之plugin的使用
    目录什么是plugin?1.添加版权的plugin: BannerPlugin2.打包html的plugin:   html-webpack-plugin3.js...
    99+
    2023-02-03
    Webpack plugin
  • Jetpack之CameraX的使用
    目录引入依赖预览拍摄引入依赖 下面,就使用该库来打造一个简单的相机应用吧~ 首先引入依赖     def camerax_version = "1.1....
    99+
    2022-11-13
    Jetpack CameraX Android CameraX
  • python之pip的使用
    python中我们会经常使用pip命令来安装一些需要用到的模块,下面我们简单来介绍一下pip命令的具体使用。pip的介绍pip 是 Python 包管理工具,该工具提供了对Python 包的查找、下载、安装、卸载的功能。pip的安装一般如果...
    99+
    2023-06-02
  • Java8 ArrayList之forEach的使用
    目录Java8 ArrayList之forEach使用一、用法二、效率ArrayList在foreach中remove的问题分析iteratoritr.hasNext 和 itr.n...
    99+
    2024-04-02
  • .Net Core 之AutoFac的使用
    目录Autofac介绍组件的三种注册方式生命周期AutoFac 在asp .net core中的使用本文不介绍IoC和DI的概念,如果你对Ioc之前没有了解的话,建议先去搜索一下相关...
    99+
    2024-04-02
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作