mybatis+jqgrid实现数据展示和分页

本文通过pageHelper插件结合jQuery Grid详细讲解如何实现数据展示和分页功能。涉及步骤包括导入pagehelper与jsqlparse依赖,services层的配置,以及前后端交互的代码示例。同时,提到了jqgrid的参数设置与返回数据结构,并鼓励读者进一步探索jqgrid的样式和事件处理。
摘要由CSDN通过智能技术生成

使用pageHelper插件+jqgrid实现分页(学习随笔,如有错漏之处,敬请指正)

1.使用pageHelper

附pagehelper使用文档:https://pagehelper.github.io/docs/

1.1导包:pagehelper.jar和jsqlparse.jar

pom.xml中导入约束(注意pageHelper包依赖了jsqlparse,所以不用重复导):
		<dependency>
			<groupId>com.github.pagehelper</groupId>
			<artifactId>pagehelper</artifactId>
			<version>5.1.10</version>
		</dependency>

在这里插入图片描述

首先要留意一下PageInfo对象中定义的成员变量
在这里插入图片描述

1.2在services层使用pagehelper

先贴代码:
services接口:

package com.springmvc.demo.services;

import java.util.List;

import org.springframework.stereotype.Service;

import com.github.pagehelper.PageInfo;
import com.springmvc.demo.entity.User;

public interface UserServices {
   
	//返回值是pageInfo<查询实体类>(主要在controller使用),pagenum:查询第几页,size查询每页的条数,
	//sidx是排序的列名,sord是排序规则(四参数均由jqgrid提供)
	public  PageInfo<User> userslist(Integer pagenum,Integer size,String sidx,String sord);
}

services实现类:

package com.springmvc.demo.services;

import java.util.List;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo;
import com.springmvc.demo.entity.User;
import com.springmvc.demo.entity.UserExample;
import com.springmvc.demo.mapper.UserMapper;
@Service
public class  UserServicesImpl implements 
项目描述 在上家公司自己集成的一套系统,用了两个多月的时间完成的:Springboot+Mybatis-plus+ SpringMvc+Shiro+Redis企业级开发系统 Springboot作为容器,使用mybatis作为持久层框架 使用官方推荐的thymeleaf做为模板引擎,shiro作为安全框架,主流技术 几乎零XML,极简配置 两套UI实现(bootstrap+layer ui),可以自由切换 报表后端采用技术: SpringBoot整合SSM(Spring+Mybatis-plus+ SpringMvc),spring security 全注解式的权限管理和JWT方式禁用Session,采用redis存储token及权限信息 报表前端采用Bootstrap框架,结合Jquery Ajax,整合前端Layer.js(提供弹窗)+Bootstrap-table(数据列表展示)+ Bootstrap-Export(各种报表导出SQL,Excel,pdf等)框架,整合Echars,各类图表的展示(折线图,饼图,直方图等),使用了layui的弹出层、菜单、文件上传、富文本编辑、日历、选项卡、数据表格等 Oracle关系型数据库以及非关系型数据库(Redis),Oracle 性能调优(PL/SQL语言,SQL查询优化,存储过程等),用Redis做中间缓存,缓存数据 实现异步处理,定时任务,整合Quartz Job以及Spring Task 邮件管理功能, 整合spring-boot-starter-mail发送邮件等, 数据源:druid 用户管理,菜单管理,角色管理,代码生成 运行环境 jdk8+oracle+redis+IntelliJ IDEA+maven 项目技术(必填) Springboot+Mybatis-plus+ SpringMvc+Shiro+Redis 数据库文件 压缩包内 jar包文件 maven搭建 Springboot+Mybatis-plus+ SpringMvc+Shiro+Redis企业级报表后台管理系统 http://localhost:/8080/login admin admin Springboot+Mybatis-plus+ SpringMvc+Shiro+Redis企业级报表后台管理系统Springboot+Mybatis-plus+ SpringMvc+Shiro+Redis企业级报表后台管理系统Springboot+Mybatis-plus+ SpringMvc+Shiro+Redis企业级报表后台管理系统Springboot+Mybatis-plus+ SpringMvc+Shiro+Redis企业级报表后台管理系统Springboot+Mybatis-plus+ SpringMvc+Shiro+Redis企业级报表后台管理系统
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值