欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

SpringBoot2 實現(xiàn)JPA分頁和排序分頁的案例

 更新時間:2021年01月29日 10:49:09   作者:易水墨龍吟  
這篇文章主要介紹了SpringBoot2 實現(xiàn)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:
 # 更新或者創(chuàng)建數(shù)據(jù)表結構
  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 實現(xiàn)類

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;
 // 分頁顯示數(shù)據(jù)
 @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);
 }
 // 排序分頁顯示數(shù)據(jù)
 @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方法對應
  *后經實驗成功!
  */
  //創(chuàng)建一個pageable,調用它的實現(xiàn)類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(); 將所有數(shù)據(jù)返回為List
   * long getTotalElements();返回元素總數(shù)
   * int getTotalPages(); 返回分頁總數(shù)
   */
  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) {
  //普通查詢跟排序查詢的唯一區(qū)別在于Sort
  //排序方式,這里的by()方法跟上面的那個of()方法作用差不多
  //Sort.Direction.DESC: 倒序
  //Sort.Direction.ASC :默認升序
  //Sort.by(Sort.Direction.***, "實體類中的字段");
  //根據(jù)實體類中的字段進行排序(我使用的"age")
  Sort sort = Sort.by(Sort.Direction.DESC, "age");
  
  //創(chuàng)建一個pageable,調用它的實現(xiàn)類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}

以上為個人經驗,希望能給大家一個參考,也希望大家多多支持腳本之家。如有錯誤或未考慮完全的地方,望不吝賜教。

相關文章

  • 淺談Java內部類——靜態(tài)內部類

    淺談Java內部類——靜態(tài)內部類

    這篇文章主要介紹了Java靜態(tài)內部類的相關資料,幫助大家更好的理解和學習Java內部類的相關知識,感興趣的朋友可以了解下
    2020-08-08
  • Installij IDEA install或clean項目的使用

    Installij IDEA install或clean項目的使用

    這篇文章主要介紹了Installij IDEA install或clean項目的使用方式,具有很好的參考價值,希望對大家有所幫助,如有錯誤或未考慮完全的地方,望不吝賜教
    2024-08-08
  • Spring Cache擴展功能實現(xiàn)過程解析

    Spring Cache擴展功能實現(xiàn)過程解析

    這篇文章主要介紹了Spring Cache擴展功能實現(xiàn)解析,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下
    2020-02-02
  • Java輸出Hello World完美過程解析

    Java輸出Hello World完美過程解析

    當我們學習一門編程語言的時候,我們都會先學如何輸出Hello World!本文通過幾個例子給大家介紹輸出Hello World的代碼,感興趣的朋友一起看看吧
    2021-06-06
  • 詳解Java實現(xiàn)分治算法

    詳解Java實現(xiàn)分治算法

    分治算法(divide and conquer)是五大常用算法(分治算法、動態(tài)規(guī)劃算法、貪心算法、回溯法、分治界限法)之一,很多人在平時學習中可能只是知道分治算法,但是可能并沒有系統(tǒng)的學習分治算法,本篇就帶你較為全面的去認識和了解分治算法
    2021-06-06
  • 阿里的Easyexcel讀取Excel文件的方法(最新版本)

    阿里的Easyexcel讀取Excel文件的方法(最新版本)

    這篇文章主要介紹了阿里的Easyexcel讀取Excel文件(最新版本)的方法,本文通過示例代碼給大家介紹的非常詳細,對大家的學習或工作具有一定的參考借鑒價值,需要的朋友可以參考下
    2022-12-12
  • SpringBoot嵌入式Servlet容器與定制化組件超詳細講解

    SpringBoot嵌入式Servlet容器與定制化組件超詳細講解

    這篇文章主要介紹了SpringBoot嵌入式Servlet容器與定制化組件的使用介紹,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面隨著小編來一起學習吧
    2022-10-10
  • java使用websocket,并且獲取HttpSession 源碼分析(推薦)

    java使用websocket,并且獲取HttpSession 源碼分析(推薦)

    這篇文章主要介紹了java使用websocket,并且獲取HttpSession,通過使用配置源碼分析了各方面知識點,具體操作步驟大家可查看下文的詳細講解,感興趣的小伙伴們可以參考一下。
    2017-08-08
  • maven package 打包報錯 Failed to execute goal的解決

    maven package 打包報錯 Failed to execute goal的解決

    這篇文章主要介紹了maven package 打包報錯 Failed to execute goal的解決,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面隨著小編來一起學習學習吧
    2020-11-11
  • springboot?靜態(tài)方法中使用@Autowired注入方式

    springboot?靜態(tài)方法中使用@Autowired注入方式

    這篇文章主要介紹了springboot?靜態(tài)方法中使用@Autowired注入方式,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教
    2022-02-02

最新評論