mybatis-plus分页插件的使用

分页插件的使用

(1)简介:与 mybatis 的插件 pagehelper 用法类似。通过简单的配置即可使用。

(2)使用Step1:

配置分页插件。  

编写一个 配置类,内部使用 @Bean 注解将 PaginationInterceptor 交给 Spring 容器管理。

import com.baomidou.mybatisplus.annotation.DbType;
import com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor;
import com.baomidou.mybatisplus.extension.plugins.inner.PaginationInnerInterceptor;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
​
/**
 * 自定义一个配置类,mapper 扫描也可在此写上
 */
@Configuration
@MapperScan("com.zx.mybatis_plus.mapper")
public class Myconfig {
    /**
     * 分页插件
     *
     * @return 分页插件的实例
     */
    @Bean
    public MybatisPlusInterceptor mybatisPlusInterceptor() {
        MybatisPlusInterceptor interceptor = new MybatisPlusInterceptor();
        //指定数据库类型是 MySQL
        interceptor.addInnerInterceptor(new PaginationInnerInterceptor(DbType.MYSQL));
        return interceptor;
    }
}
​

Step2:  

编写分页代码。  

直接 new 一个 Page 对象,对象需要传递两个参数(当前页,每页显示的条数)。  

调用 mybatis-plus 提供的分页查询方法,其会将 分页查询的数据封装到 Page 对象中。

基本的方法如下

@Test
    public void testPage() {
        // Step1:创建一个 Page 对象
        Page<Users> page = new Page<Users>();
        // Page<Users> page = new Page<Users>(2, 5);
        // Step2:调用 mybatis-plus 提供的分页查询方法
        usersService.page(page, null);
        // Step3:获取分页数据
        System.out.println(page.getCurrent()); // 获取当前页
        System.out.println(page.getTotal()); // 获取总记录数
        System.out.println(page.getSize()); // 获取每页的条数
        System.out.println(page.getRecords()); // 获取每页数据的集合
        System.out.println(page.getPages()); // 获取总页数
        System.out.println(page.hasNext()); // 是否存在下一页
        System.out.println(page.hasPrevious()); // 是否存在上一页
    }

跳转到页面的使用方法如下

@RequestMapping("list")
    public String list(String rolecode,String rolename,Integer current,Model model){
        if(current==null){
            current=1;
        }
        Integer limit=2;
        Integer total;//总页数
        List<SmbmsRole> list=smbmsRoleService.list();
        total=list.size()/limit;
        if (list.size()%limit!=0){
            total=list.size()/limit+1;
        }else {
            total=list.size()/limit;
        }
        //如果跳转的页面大于总页数就直接到最后一页
        if (current>total){
            current=total;
            System.out.println(current);
        }
        //currenr  当前页数
        //limit  页面 尺寸
        //page  分页信息
        Page<SmbmsRole> page = new Page<SmbmsRole>(current, limit);
        QueryWrapper<SmbmsRole> wrapper =new QueryWrapper<>();
        if(rolecode!=null&&rolecode!="null"){
            wrapper.like("rolecode",rolecode);
        }
        if(rolename!=null&&rolename!="null"){
            wrapper.like("rolename",rolename);
        }
        smbmsRoleService.page(page,wrapper);
        model.addAttribute("rolecode", rolecode);
        model.addAttribute("rolename", rolename);
        model.addAttribute("current",current);
        model.addAttribute("upage",page);
        return "rolelist";
    }

返回JOSN数据使用如下

// 分页查询 - mybatis-plus的方式
    @GetMapping("/page")
    public IPage<SysUser> findPage(@RequestParam Integer pageNum,
                                   @RequestParam Integer pageSize,
                                   @RequestParam(defaultValue = "") String username,
                                   @RequestParam(defaultValue = "") String email,
                                   @RequestParam(defaultValue = "") String address) {
        IPage<SysUser> page = new Page<>(pageNum, pageSize);
        QueryWrapper<SysUser> queryWrapper = new QueryWrapper<>();
        if (!"".equals(username)) {
            queryWrapper.like("username", username);
        }
        if (!"".equals(email)) {
            queryWrapper.like("email", email);
        }
        if (!"".equals(address)) {
            queryWrapper.like("address", address);
        }
        return sysUserService.page(page, queryWrapper);
    }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值