• 使用mybatis-plus如何实现分页查询功能


    今天就跟大家聊聊有关使用mybatis-plus如何实现分页查询功能,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。

    引入依赖:

    1. <!-- 引入mybatisPlus -->
    2.   <dependency>
    3. <groupId>com.baomidou</groupId>
    4. <artifactId>mybatis-plus-boot-starter</artifactId>
    5. <version>3.2.0</version>
    6. </dependency>
    7. <!-- 引入mysql驱动包 -->
    8. <dependency>
    9. <groupId>mysql</groupId>
    10. <artifactId>mysql-connector-java</artifactId>
    11. <version>5.1.27</version>
    12. </dependency>
    13. <!-- 引入Druid依赖,阿里巴巴所提供的数据源 -->
    14. <dependency>
    15. <groupId>com.alibaba</groupId>
    16. <artifactId>druid</artifactId>
    17. <version>1.0.29</version>
    18.     </dependency>

    在application.yml配置

    1. spring:
    2. datasource:
    3. type: com.alibaba.druid.pool.DruidDataSource
    4. driver-class-name: com.mysql.jdbc.Driver
    5. url: jdbc:mysql://127.0.0.1:3306/test&#63;useUnicode=true&characterEncoding=UTF-8
    6. username: root
    7. password: 123456

    在启动类上面添加@MapperScan注解,扫描mapper包

    1. @SpringBootApplication
    2. @MapperScan("com.qiao.demo02.mapper")
    3. public class SpringbootDemo02Application {
    4. public static void main(String[] args) {
    5. SpringApplication.run(SpringbootDemo02Application.class, args);
    6. }
    7. }

    新建User和UserMapper

    user类

    1. @Data
    2. public class User {
    3. @TableId
    4. private Integer userId;
    5. private String userName;
    6. private Integer userAge;
    7. private String userEmail;
    8. }
    9. UserMapper接口
    1. public interface UserMapper extends BaseMapper<User> {
    2. }

    最重要的是继承BaseMapper接口:里面声明了很强大的CRUD方法

    1. public interface BaseMapper<T> extends Mapper<T> {
    2. int insert(T entity);
    3. int deleteById(Serializable id);
    4. int deleteByMap(@Param("cm") Map<String, Object> columnMap);
    5. int delete(@Param("ew") Wrapper<T> wrapper);
    6. int deleteBatchIds(@Param("coll") Collection<&#63; extends Serializable> idList);
    7. int updateById(@Param("et") T entity);
    8. int update(@Param("et") T entity, @Param("ew") Wrapper<T> updateWrapper);
    9. T selectById(Serializable id);
    10. List<T> selectBatchIds(@Param("coll") Collection<&#63; extends Serializable> idList);
    11. List<T> selectByMap(@Param("cm") Map<String, Object> columnMap);
    12. T selectOne(@Param("ew") Wrapper<T> queryWrapper);
    13. Integer selectCount(@Param("ew") Wrapper<T> queryWrapper);
    14. List<T> selectList(@Param("ew") Wrapper<T> queryWrapper);
    15. List<Map<String, Object>> selectMaps(@Param("ew") Wrapper queryWrapper);
    16. List<Object> selectObjs(@Param("ew") Wrapper<T> queryWrapper);
    17. IPage<T> selectPage(IPage<T> page, @Param("ew") Wrapper<T> queryWrapper);
    18. IPage<Map<String, Object>> selectMapsPage(IPage page, @Param("ew") Wrapper queryWrapper);
    19. }

    分页查询

    这点官方文档讲的也很详细:https://mp.baomidou.com/guide/page.html

    新建一个config包,在里面建一个MybatisPlus配置类 返回一个分页拦截器

    1. package com.qiao.demo02.config;
    2. @Configuration
    3. @ConditionalOnClass(value = {PaginationInterceptor.class})
    4. public class MybatisPlusConfig {
    5. @Bean
    6. public PaginationInterceptor paginationInterceptor() {
    7. PaginationInterceptor paginationInterceptor = new PaginationInterceptor();
    8. return paginationInterceptor;
    9. }
    10. }

    这样就能使用mybatis的分页功能了

    Junit测试

    1. @Resource
    2. private UserMapper userMapper;
    3. @Test
    4. public void queryUserForPage(){
    5. IPage<User> userPage = new Page<>(2, 2);//参数一是当前页,参数二是每页个数
    6. userPage = userMapper.selectPage(userPage, null);
    7. List<User> list = userPage.getRecords();
    8. for(User user : list){
    9. System.out.println(user);
    10. }
    11. }

    Controller返回json串

    先定义一个包装类UserVo,用来保存分页所需要的数据

    1. package com.qiao.demo02.vo;
    2. @Data
    3. public class UserVo {
    4. private Integer current;
    5. private Integer size;
    6. private Long total;
    7. private List userList;
    8. }

    然后在控制器编写代码,这里省略了service层,实际开发业务代码写在service层,Controller只负责:接受参数、调用service层方法处理业务逻辑,返回结果

    Controller类贴上了@RestController注解

    1. @GetMapping("queryUser")
    2. public UserVo queryList(Integer current, Integer size) {
    3. /**
    4. * 这些代码应该写在service层
    5. */
    6. UserVo userVo = new UserVo();
    7. IPage<User> page = new Page<>(current, size);
    8. userMapper.selectPage(page, null);
    9. userVo.setCurrent(current);
    10. userVo.setSize(size);
    11. userVo.setTotal(page.getTotal());
    12. userVo.setUserList(page.getRecords());
    13. return userVo;
    14. }

    附上结果,前端直接处理json数据即可

    看完上述内容,你们对使用mybatis-plus如何实现分页查询功能有进一步的了解吗?

  • 相关阅读:
    [学习记录] SpringBoot 1. 基础入门
    wxpython设计GUI:grid控件实现显示表单数据功能,同时实现界面的上下翻页以及跳转功能
    Redis 设计与实现
    华为机试真题 Java 实现【无向图染色】【2022.11 Q4新题】
    零基础自学javase黑马课程第六天
    Linux程序调试器——gdb的使用
    3.rsync备份案例
    未来已来:探索IT行业的革新与大模型技术的突破
    备忘录软件综合评测:优点、缺点、评价及替代品
    【打卡】牛客网:BM36 判断是不是平衡二叉树
  • 原文地址:https://blog.csdn.net/jcc4261/article/details/127782240