一、后台代码:

  1.1 controller层代码

@RequestMapping("/xxxxxx")
public String showInformationCode(String pageNum ,Model model,HttpServletRequest request){
String id = (String)request.getSession().getAttribute("Id");
if(pageNum == null){
pageNum="1";
}
int parseInt = Integer.parseInt(pageNum);
if (StringUtils.isBlank(id)) {
return null;
}
Page<Test> selectTestListById = informationService.selectTestListById(id ,parseInt);//jpa的分页查询,parseInt(第几页)
model.addAttribute("selectTestListById ",selectTestListById );
return "test";
}

  1.2 service层代码

public static final int PAGE_SIZE = 10;  //全局变量PAGE_SIZE(每页显示的数据条数) 

/**
* 分页查询
* @param csdbId
* @param pageable
* @return
*/
public Page<Test> selectTestListByCsdbId(String id ,int pageNumber) {
PageRequest buildPageRequest = BuildPageRequest(pageNumber, PAGE_SIZE);
Page<Test> findById = testMapper.findById(id, buildPageRequest);
return findById ;
} public static PageRequest buildPageRequest(int pageNumber, int pagzSize){
return new PageRequest(pageNumber - 1, pagzSize, null);
}

  1.3 mapper层代码

public interface CsdbSetDmInformationCodeMapper extends JpaRepository<CsdbSetDmInformationCode, String>{

  /**
   * 分页
   */
Page<Test> findById(String id ,Pageable pageable); //批量删除
@Transactional
@Modifying
@Query(value="delete from tablre where id in ?1 ",nativeQuery=true)
int deleteByPrimaryKeys(List<String> ids); }

这样传入前台的数据就只有10条,直到下一次请求的到来,在根据传入的pageNum(页数)来确定传入前台的数据(eg:每页的条数我是通过全局变量写死了的,可以自行修改)

二、前台使用layui的layPage插件来实现分页

  2.1 首先要在页面上引入layui的js和css(也可直接引用layPage.js),layui的下载地址:http://res.layui.com/download/layui/layui-v2.0.2.zip

  2.2 前台test.html页面

<!DOCTYPE html SYSTEM "http://www.thymeleaf.org/dtd/xhtml1-strict-thymeleaf-4.dtd">
<html lang="en" xmlns="http://www.w3.org/1999/xhtml"
xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
<title>information code</title>
<link rel="stylesheet" th:href="@{/libs/plugin/layui/css/layui.css}">
<link rel="stylesheet" th:href="@{/css/test.css}">
</head>
<body>
<div id="warpper">
<div id="informationCode">
<table class="bordered">
<thead>
<tr>
<th>
<input type="checkbox" class="check-all">
</th>
<th>Information Code</th>
<th>InfoName</th>
<th>Front Matter Routine</th>
</tr>
</thead>
<tbody>
<tr th:each = "informationCode : ${selectTestListById.content}" th:id="${informationCode.id}">
<td><input type="checkbox" th:value="${informationCode.id}" name="idCheckbox"></td>
<td class="informationcode"><input type="text" class="input-style" th:value="${informationCode.informationcode}" readonly="readonly"/></td>
<td class="infoname"><input type="text" class="input-style" th:value="${informationCode.infoname}"/></td>
</tr>
</tbody>
</table> <div id="pages">
</div>
<input type="hidden" th:value="${informationCodeList.TotalPages}" id="pageTotal"> <!-- 总条数 -->
<input type="hidden" th:value="${informationCodeList.number+1}" id="page">  <!-- 第几页 -->
</div>
<div id="btnBox">
<input type="button" value="New" class="btn-style fl" id="informationCodeAdd">
<input type="button" value="Delete" class="btn-style fl" id="informationCodeDel">
<a class="btn-href" href="/csdb/info/informationCodeDefault.shtml">
<input type="button" value="Default" class="btn-style fl" id="informationCodeDefault"/></a>
<input type="button" value="Save" class="btn-style fl" id="informationCodeSave">
</div>
</div>
</body>
<script th:src="@{/csdb/libs/jquery/jquery-3.2.1.js}" type="text/javascript"></script>
<script th:src="@{/csdb/libs/plugin/layui/layui.js}" type="text/javascript"></script> <script>
<!-- /**
* 分页(layui的版本为1.0.9时使用)
*/
layui.use('laypage', function(){
var laypage = layui.laypage; //执行一个laypage实例
laypage({
cont: 'pages',
pages: $("#pageTotal").val(),
skip: true, //控制分页皮肤
curr:$("#page").val(),
jump:function (obj,first){
if(!first){
window.location.href="/csdb/info/informationCode.shtml?pageNum="+obj.curr
}
}
});
}); --> /**
* 分页(layui的版本为2.x时使用)
*/
layui.use('laypage', function(){
var laypage = layui.laypage; //执行一个laypage实例
laypage({
elem: 'pages', //不同于1.0.9版本
count: $("#pageTotal").val(), //切换分页的回调,当分页被切换时触发,函数返回两个参数:obj(当前分
//页的所有选项值)、first(是否首次,一般用于初始加载的判断)
jump:function (obj,first){
if(!first){
window.location.href="/xxxxxx?pageNum="+obj.curr
}
}
});
}); </script>
</html>

Spring Data JPA + layui的前台分页插件layPage实现页面的分页的更多相关文章

  1. 整合Spring Data JPA与Spring MVC: 分页和排序

    之前我们学习了如何使用Jpa访问关系型数据库.比较完整Spring MVC和JPA教程请见Spring Data JPA实战入门,Spring MVC实战入门. 通过Jpa大大简化了我们对数据库的开发 ...

  2. 整合Spring Data JPA与Spring MVC: 分页和排序pageable

    https://www.tianmaying.com/tutorial/spring-jpa-page-sort Spring Data Jpa对于分页以及排序的查询也有着完美的支持,接下来,我们来学 ...

  3. 快速搭建springmvc+spring data jpa工程

    一.前言 这里简单讲述一下如何快速使用springmvc和spring data jpa搭建后台开发工程,并提供了一个简单的demo作为参考. 二.创建maven工程 http://www.cnblo ...

  4. Spring Data JPA进阶——Specifications和Querydsl

    Spring Data JPA进阶--Specifications和Querydsl 本篇介绍一下spring Data JPA中能为数据访问程序的开发带来更多便利的特性,我们知道,Spring Da ...

  5. 如何在Spring Data JPA中引入Querydsl

    一.环境说明 基础框架采用Spring Boot.Spring Data JPA.Hibernate.在动态查询中,有一种方式是采用Querydsl的方式. 二.具体配置 1.在pom.xml中,引入 ...

  6. Spring Boot 应用系列 1 -- Spring Boot 2 整合Spring Data JPA和Druid,双数据源

    最近Team开始尝试使用Spring Boot + Spring Data JPA作为数据层的解决方案,在网上逛了几圈之后发现大家并不待见JPA,理由是(1)MyBatis简单直观够用,(2)以Hib ...

  7. Hibernate、Mybatis与Spring Data JPA

    从零开始集成Springboot+MyBatis+JPA https://www.jianshu.com/p/e14c4a6f6871 MyBatis 与Hibernate的区别 http://xhr ...

  8. 使用Spring Data JPA进行数据分页与排序

    一.导读 如果一次性加载成千上万的列表数据,在网页上显示将十分的耗时,用户体验不好.所以处理较大数据查询结果展现的时候,分页查询是必不可少的.分页查询必然伴随着一定的排序规则,否则分页数据的状态很难控 ...

  9. javaweb各种框架组合案例(四):maven+spring+springMVC+spring data jpa(hibernate)【失败案例】

    一.失败案例 1. 控制台报错信息 严重: Exception sending context initialized event to listener instance of class org. ...

随机推荐

  1. springboot: 使web项目支持jsp

    1.springboot为什么不推荐使用jsp? 参考地址:https://spring.io/blog/2012/10/30/spring-mvc-from-jsp-and-tiles-to-thy ...

  2. 8.Python编写登录接口

    1.python需安装flask,在命令行窗口输入:pip3 install flask 2.代码如下所示: from flask import Flask,request,jsonify,sessi ...

  3. 初识php,开发环境的配置

    PHP开发环境配置和第一个PHP程序(phpStudy+PhpStorm) 第一步 下载phpStudy 首先,到phpStudy官网上下载最新的phpStudy版本. 第二步 安装phpStudy ...

  4. 亚马逊MWS开发套路演示

    MWS是商城网络服务的缩写,具体介绍看这里http://docs.developer.amazonservices.com/zh_CN/dev_guide/DG_IfNew.html.MWS就是一组A ...

  5. my.conf配置大全

    [client]port = 3306socket = /tmp/mysql.sock [mysqld]port = 3306socket = /tmp/mysql.sock basedir = /u ...

  6. Java中的自动类型转换/隐式类型转换

    整型.实型(常量).字符型数据可以混合运算.运算中,不同类型的数据先转化为同一类型,然后进行运算. 转换从低级到高级. 自动类型转换必须满足转换前的数据类型的位数要低于转换后的数据类型,例如: sho ...

  7. node 中的定时器, nextTick()和setImmediate()的使用

    1.node中使用定时器的问题在于,它并非精确的.譬如setTimeout()设定一个任务在10ms后执行,但是在9ms后,有一个任务占用了5ms,再次轮到定时器时,已经耽误了4ms. 好了node中 ...

  8. 【UVALive】3905 Meteor(扫描线)

    题目 传送门:QWQ 分析 扫描线搞一搞. 按左端点排序,左端点相同时按右端点排序. 如果是左端点就$ cnt++ $,否则$ cnt-- $ 统计一下$ Max $就行了 代码 #include & ...

  9. 【UVa】1343 The Rotation Game(IDA*)

    题目 题目     分析 lrj代码.... 还有is_final是保留字,害的我CE了好几发.     代码 #include <cstdio> #include <algorit ...

  10. String s;和String s=null;和String s="a";有什么区别?

    String s;和String s=null;和String s="a";有什么区别?   针对这三种情况,使用out.println(s);的时候,第一个会出现异常,第二个会输 ...