SpringBoot2 实现JPA分页和排序分页的案例

分页

application.yml

spring:
 datasource:
 url: jdbc:mysql://127.0.0.1/jpa?useUnicode=true&characterEncoding=utf-8&useSSL=false
 username: root
 password: 123456
 driver-class-name: com.mysql.jdbc.Driver
 jpa:
 hibernate:
 # 更新或者创建数据表结构
  ddl-auto: update
 # 控制台显示SQL
 show-sql: true
 properties:
  hibernate.format_sql: true

实体类

@Entity
@Table(name = "employee")
public class Employee {
 @Id
 @GeneratedValue(strategy = GenerationType.IDENTITY)
 private Integer empId;
 private String lastName;
 private String email;
 @Temporal(TemporalType.DATE)
 private Date birth;
 @Temporal(TemporalType.TIMESTAMP)
 private Date createTime;
 @ManyToOne
 @JoinColumn(name = "dept_id")
 private Department department;
 // 省去 set get方法
}
@Entity
@Table(name = "department")
public class Department {
 @Id
 @GeneratedValue(strategy = GenerationType.IDENTITY)
 private Integer deptId;
 private String deptName;
 // 省去 set get方法
}

Repository接口类

import com.springboot.jpa.entity.Employee;
import org.springframework.data.jpa.repository.JpaRepository;
public interface EmployeeRepository extends JpaRepository<Employee, Integer> {
}

service 接口类

import com.springboot.jpa.entity.Employee;
import org.springframework.data.domain.Page;
public interface EmployeeService {
 // 普通分页
 Page<Employee> getPage(Integer pageNum, Integer pageLimit);
 // 排序分页
 Page<Employee> getPageSort(Integer pageNum, Integer pageLimit);
}

Service 实现类

import com.springboot.jpa.dao.EmployeeRepository;
import com.springboot.jpa.entity.Employee;
import com.springboot.jpa.service.EmployeeService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.PageRequest;
import org.springframework.data.domain.Pageable;
import org.springframework.data.domain.Sort;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
@Service
public class EmployeeServiceImpl implements EmployeeService {
 @Autowired
 private EmployeeRepository employeeRepository;
 // 普通分页
 @Override
 @Transactional(readOnly = true) // 只读事务
 public Page<Employee> getPage(Integer pageNum, Integer pageLimit) {
  Pageable pageable =new PageRequest(pageNum - 1,pageLimit);
  return employeeRepository.findAll(pageable);
 }
 // 分页排序
 @Override
 @Transactional(readOnly = true)
 public Page<Employee> getPageSort(Integer pageNum, Integer pageLimit) {
  Sort sort = new Sort(Sort.Direction.DESC,"createTime");
  Pageable pageable =new PageRequest(pageNum - 1, pageLimit, sort);
  return employeeRepository.findAll(pageable);
 }
}

Controller控制器类

import com.springboot.jpa.entity.Employee;
import com.springboot.jpa.service.EmployeeService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.domain.Page;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class EmployeeController {
 @Autowired
 private EmployeeService employeeService;
 // 分页显示数据
 @GetMapping("/emp")
 public Page<Employee> showPage(@RequestParam(value = "page") Integer page, @RequestParam(value = "size") Integer size){
  System.out.println("分页: page:"+page+"; size:"+size);
  return employeeService.getPage(page, size);
 }
 // 排序分页显示数据
 @GetMapping("/emp_sort")
 public Page<Employee> showSortPage(@RequestParam(value = "page") Integer page, @RequestParam(value = "size") Integer size){
  System.out.println("排序分页: page:"+page+"; size:"+size);
  return employeeService.getPageSort(page, size);
 }
}

分页显示的json格式串

http://localhost:8080/emp_sort?page=1&size=10 url格式

{
 "content": [{
  "lastName": "7QW",
  "email": "453@qq.com",
  "birth": "2018-08-06",
  "createTime": "2018-08-30T07:40:34.000+0000",
  "id": 5,
  "dempartment": {
   "deptName": "BBB",
   "id": 2
  }
 }, {
  "lastName": "qax",
  "email": "1223@qq.com",
  "birth": "2018-08-06",
  "createTime": "2018-08-24T07:40:56.000+0000",
  "id": 6,
  "dempartment": {
   "deptName": "AAA",
   "id": 1
  }
 }
 }],
 "pageable": {
  "sort": {
   "sorted": true,
   "unsorted": false
  },
  "offset": 0,
  "pageNumber": 0,
  "pageSize": 10,
  "unpaged": false,
  "paged": true
 },
 "last": true,
 "totalElements": 6,
 "totalPages": 1,
 "number": 0,
 "size": 10,
 "sort": {
  "sorted": true,
  "unsorted": false
 },
 "numberOfElements": 6,
 "first": true
}

补充:Spring Data Jpa普通分页+排序分页

SpringBoot2 使用jpa分页问题

一、 jap的普通分页:

pojo

@Entity
@Table(name = "user")
public class User {
@Id
 @GeneratedValue(strategy = GenerationType.IDENTITY)
 private Integer id;
 @Column
 private String userName;
 @Column
 private String password;
 @Column
 private String age;
 //省略get、set
 }

IUserService

//jpa简单分页
Page<User> getPage(Integer pageNum,Integer pageSize);

UserService

@Override
 public Page<User> getPage(Integer pageNum, Integer pageSize) {
  /**
  *之前看到别的博主直接new PageRequest(pageNum-1,pageSize)
  *自己实践后报错,可能是因为版本不一致吧
  *查看PageRequest的底层构造方法并没有对应的只有of方法对应
  *后经实验成功!
  */
  //创建一个pageable,调用它的实现类PageRequest的of()方法
  Pageable pageable = PageRequest.of(pageNum - 1, pageSize);

  Page<User> userPage = userDao.findAll(pageable);
  return userPage;
 }

Test

@Test
 void testGetPage(){
  //调用service层的getPage()方法
  Page<User> userPage = userService.getPage(1, 5);
  /**
   * userPage.getContent()
   * getContent(); 获取查询的结果集
   * Page<Object>常用方法
   * List<T> getContent(); 将所有数据返回为List
   * long getTotalElements();返回元素总数
   * int getTotalPages(); 返回分页总数
   */
  List<User> users = userPage.getContent();
  for (User user : users) {
   System.out.println(user);
  }
 }

结果:

User{id=17, userName=‘大锤', password=‘1***3', age=23}
User{id=18, userName=‘小黑', password=‘w***w', age=21}
User{id=19, userName=‘小白', password=‘2***1', age=29}
User{id=20, userName=‘小红', password=‘4***2', age=19}
User{id=21, userName=‘小芳', password=‘2***3', age=17}

二、 jap的普通分页:

IUserService

同上

UserService

@Override
 public Page<User> getPage(Integer pageNum, Integer pageSize) {
  //普通查询跟排序查询的唯一区别在于Sort
  //排序方式,这里的by()方法跟上面的那个of()方法作用差不多
  //Sort.Direction.DESC: 倒序
  //Sort.Direction.ASC :默认升序
  //Sort.by(Sort.Direction.***, "实体类中的字段");
  //根据实体类中的字段进行排序(我使用的"age")
  Sort sort = Sort.by(Sort.Direction.DESC, "age");

  //创建一个pageable,调用它的实现类PageRequest的of()方法
  //将sort加入到of()中排序完成
  Pageable pageable = PageRequest.of(pageNum - 1, pageSize,sort);

  Page<User> userPage = userDao.findAll(pageable);
  return userPage;
 }

Test

省略单元测试

结果:

User{id=19, name=‘小白', password=‘2***1', age=29}
User{id=16, name=‘老李', password=‘8***7', age=25}
User{id=17, name=‘大锤', password=‘1***3', age=23}
User{id=15, name=‘老宋', password=‘9***0', age=22}
User{id=18, name=‘小黑', password=‘w***w', age=21}

以上为个人经验,希望能给大家一个参考,也希望大家多多支持我们。如有错误或未考虑完全的地方,望不吝赐教。

(0)

相关推荐

  • Spring Data JPA实现分页Pageable的实例代码

    在JPA中提供了很方便的分页功能,那就是Pageable(org.springframework.data.domain.Pageable)以及它的实现类PageRequest(org.springframework.data.domain.PageRequest),详细的可以见示例代码. 1.改变CustomerRepository方法​ /** * 一个参数,匹配两个字段 * @param name2 * @Param pageable 分页参数 * @return * 这里Param的值和

  • SpringBoot2.3.0配置JPA的实现示例

    JPA顾名思义就是Java Persistence API的意思,是JDK 5.0注解或XML描述对象-关系表的映射关系,并将运行期的实体对象持久化到数据库中. 依赖 spring-boot-starter-data-jdbc spring-boot-starter-data-jpa mysql-connector-java <dependency> <groupId>org.springframework.boot</groupId> <artifactId&g

  • SpringBoot Jpa分页查询配置方式解析

    这篇文章主要介绍了SpringBoot Jpa分页查询配置方式解析,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下 这是已经被废弃的接口 Sort sort = new Sort(Sort.Direction.DESC,"bean类中字段"); //创建时间降序排序 Pageable pageable = new PageRequest(pageNumber,pageSize,sort); 上面的用法在最新的SpringBoot中已经不

  • 基于springboot2集成jpa,创建dao的案例

    springboot中集成jpa需要再pom文件中添加jpa的jar包,使用springboot的话iju不用自己规定版本号了,自动管理依赖版本即可. <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-jpa</artifactId> </dependency> 然后我们再添加hibernate和o

  • SpringBoot2 实现JPA分页和排序分页的案例

    分页 application.yml spring: datasource: url: jdbc:mysql://127.0.0.1/jpa?useUnicode=true&characterEncoding=utf-8&useSSL=false username: root password: 123456 driver-class-name: com.mysql.jdbc.Driver jpa: hibernate: # 更新或者创建数据表结构 ddl-auto: update # 控

  • Spring Data Jpa实现分页和排序代码实例

    之前我们学习了如何使用Jpa访问关系型数据库.通过Jpa大大简化了我们对数据库的开发工作.但是,之前的例子中我们只提到了最简单的CRUD(增删改查)操作.实际上,Spring Data Jpa对于分页以及排序的查询也有着完美的支持,接下来,我们来学习如何通过Pageable来对数据库进行分页查询. 添加maven依赖 首先我们需要引入Jpa,数据库直接使用hsqldb内存数据库就可以了: <project xmlns="http://maven.apache.org/POM/4.0.0&q

  • SpringBoot JPA实现增删改查、分页、排序、事务操作等功能示例

    今天给大家介绍一下SpringBoot中JPA的一些常用操作,例如:增删改查.分页.排序.事务操作等功能. 下面先来介绍一下JPA中一些常用的查询操作: //And --- 等价于 SQL 中的 and 关键字,比如 findByHeightAndSex(int height,char sex): public List<User> findByHeightAndSex(int height,char sex); // Or --- 等价于 SQL 中的 or 关键字,比如 findByHei

  • Spring Data JPA进行数据分页与排序的方法

    一.导读 如果一次性加载成千上万的列表数据,在网页上显示将十分的耗时,用户体验不好.所以处理较大数据查询结果展现的时候,分页查询是必不可少的.分页查询必然伴随着一定的排序规则,否则分页数据的状态很难控制,导致用户可能在不同的页看到同一条数据.那么,本文的主要内容就是给大家介绍一下,如何使用Spring Data JPA进行分页与排序. 二.实体定义 我们使用一个简单的实体定义:Article(文章) @Data @AllArgsConstructor @NoArgsConstructor @Bu

  • Spring data jpa的使用与详解(复杂动态查询及分页,排序)

    一. 使用Specification实现复杂查询 (1) 什么是Specification Specification是springDateJpa中的一个接口,他是用于当jpa的一些基本CRUD操作的扩展,可以把他理解成一个spring jpa的复杂查询接口.其次我们需要了解Criteria 查询,这是是一种类型安全和更面向对象的查询.而Spring Data JPA支持JPA2.0的Criteria查询,相应的接口是JpaSpecificationExecutor. 而JpaSpecifica

  • DataGrid同时具有分页和排序功能及注意点

    当DataGrid同时具有分页和排序功能时应注意在重新绑定数据源时,MyDataGrid.CurrentPageIndex=0;下面给实现以上功能的原码,也就不多缀了aspx中包含有DataGrid和控制其数据源变化的dropdownlistDataGrid代码  <asp:datagrid id="MyDataGrid" runat="server" BorderColor="#CCCCCC" Font-Size="100%&q

  • ASP.NET MVC分页和排序功能实现

    分页和排序,应该是软件开发中,需要必知必会的技能了,对于分页,网上很多教程,当然,别人终究是别人的,只有自己理解,会了,并且吸收之后,再用自己的语言,传授出来,这才是硬道理.好了,废话说多了.现在我们进入正题: 这里,我打算使用EF Code-First方式分页控件就是用PagedList.MVC,来做分页,对于排序,实现的思路是,加载数据出来之后,默认是升序排序,然后我们点击一下相应的列标题,就按照该字段降序排序,查数据.思路明确了,就开始干吧! 1.首先新建一个空白的MVC项目,在Model

  • 生成多字段排序分页的SQL的通用类

    如果的单一字段排序分页,现在有很多的存储过程和SQL语句,分页的时候,只取pageSize的记录,可遇见的问题是: 这个单一字段必须是唯一的 这个字段必须是可以被排序的 不支持多字段排序 针对这一问题,我用C#做了一个类,解决以上的对多字段排序分页和每次都取pageSize条记录的问题 先看看代码:  复制代码 代码如下: using System;  using System.Collections.Specialized;  namespace web  {      /// <summar

  • 使用bootstraptable插件实现表格记录的查询、分页、排序操作

    在业务系统开发中,对表格记录的查询.分页.排序等处理是非常常见的,在Web开发中,可以采用很多功能强大的插件来满足要求,且能极大的提高开发效率,本随笔介绍这个bootstrap-table是一款非常有名的开源表格插件,在很多项目中广泛的应用.Bootstrap-table插件提供了非常丰富的属性设置,可以实现查询.分页.排序.复选框.设置显示列.Card view视图.主从表显示.合并列.国际化处理等处理功能,而且该插件同时也提供了一些不错的扩展功能,如移动行.移动列位置等一些特殊的功能,插件可

  • 在ASP.NET 2.0中操作数据之二十四:分页和排序报表数据

    导言 分页和排序是在WEB应用程序中展现数据常见的功能.比如,当我们在一个网上书店搜索ASP.NET书籍的时候,可能有几百本相关书籍,但是我们只希望每页显示10条有效记录.而且,我们还希望结果能根据标题.价格.页数和作者等等来进行排序.过去的23个教程中我们研究了如何建立各种报表,包括在界面上添加编辑和删除数据.但是我们没有研究如何对数据进行排序,对于分页我们也仅在研究DetailsView和FormView控件的时候看到. Step 1:添加分页和排序页面 在我们开始以前,首先让我们花些时间来

随机推荐