• Springboot-MyBatisPlue入门


    一 创建项目,选择spring boot 初始化,配置相关信息

     

    第五步创建实体类

    二  快速开发实体类的jar包--lombok

    1. org.projectlombok
    2. lombok
    3. 1.18.12

    使用:

    1. @Data
    2. public class User {
    3. private Long id;
    4. private String name;
    5. private String password;
    6. private Integer age;
    7. private String tel;
    8. }

    三 标准层crud方法

    进行对比:

    四 mp拦截器实现分页

    1. //添加配置类,让springboot启动类扫描到这个类
    2. @Configuration
    3. public class MpConfig {
    4. @Bean
    5. public MybatisPlusInterceptor mpInterceptor(){
    6. //1.定义Mp拦截器
    7. MybatisPlusInterceptor mpInterceptor = new MybatisPlusInterceptor();
    8. //2.添加具体的拦截器
    9. mpInterceptor.addInnerInterceptor(new PaginationInnerInterceptor());
    10. return mpInterceptor;
    11. }
    12. }

     测试代码:

    1. @Test
    2. void testGetByPage(){
    3. //IPage对象封装了分页操作相关的数据
    4. IPage page = new Page(2,3);
    5. userDao.selectPage(page,null);
    6. System.out.println("当前页码值:"+page.getCurrent());
    7. System.out.println("每页显示数:"+page.getSize());
    8. System.out.println("一共多少页:"+page.getPages());
    9. System.out.println("一共多少条数据:"+page.getTotal());
    10. System.out.println("数据:"+page.getRecords());
    11. }

    开启mp的日志,输出到控制台

    1. mybatis-plus:
    2. configuration:
    3. log-impl: org.apache.ibatis.logging.stdout.StdOutImpl

    结果: 

    1. JDBC Connection [com.mysql.cj.jdbc.ConnectionImpl@706fe5c6] will not be managed by Spring
    2. ==> Preparing: SELECT COUNT(*) FROM user //原始sql语句
    3. ==> Parameters: //参数列表
    4. <== Columns: COUNT(*)
    5. <== Row: 4
    6. <== Total: 1
    7. ==> Preparing: SELECT id,name,password,age,tel FROM user LIMIT ?,? //追加的
    8. ==> Parameters: 3(Long), 3(Long)
    9. <== Columns: id, name, password, age, tel
    10. <== Row: 1713551068175183874, 程序员, mycobi, 12, 4006184000
    11. <== Total: 1
    12. Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@444cc791]

  • 相关阅读:
    基于导频的信道估计实现
    成熟ICT测试系统与LabVIEW定制开发的比较
    教程 | 使用 Apache SeaTunnel 同步本地文件到阿里云 OSS
    毕业设计 stm32单片机智能车辆仪表盘系统 - 物联网
    力扣第 304 场周赛复盘
    Python——异常
    MongoDB快速上手
    【蓝桥杯选拔赛真题43】python二进制位数 青少年组蓝桥杯python 选拔赛STEMA比赛真题解析
    大数据课程M2——ELK的ELASTICSEARCH概述
    将已有jar包放进maven仓库
  • 原文地址:https://blog.csdn.net/m0_61395860/article/details/133847883