Springboot整合myBatis(附加pagehelper分页插件)

Springboot整合myBatis(附加pagehelper分页插件)

  • 前提
    • 第一步,创建spring boot,导入maven依赖
    • 第二步,进行appliction配置
    • 第三步,将springboot启动类进行扫描接口配置
    • 第四步创建三层架构项目
    • 第四步,运行项目,访问Controller接口
    • 分页插件pagehelper
  • 总结

前提

大家好,我在身边的人当着发现对spring boot整合mybatis和pageHepler的理解不是很好,经常会报错,所以我编写了此文档,给刚入门的人观看,仅限自己的理解,如果有问题的地方,希望大家可以提出,我一定修改。

第一步,创建spring boot,导入maven依赖

依赖共6个

  1. spring-boot-starter-web ,springmvc的依赖;
  2. mybatis-spring-boot-starter ,springboot整合mybatis依赖;
  3. mysql-connector-java ,springboot整合mysql依赖;
  4. lombok ,springboot整合实体类的getsettostring等方法依赖;
  5. spring-boot-starter-test ,单元测试依赖;
  6. pagehelper-spring-boot-starter ,分页依赖;

代码


        
            org.springframework.boot
            spring-boot-starter-web
        
        
        
            org.mybatis.spring.boot
            mybatis-spring-boot-starter
            2.0.1
        
        
        
            mysql
            mysql-connector-java
            runtime
        
        
        
            org.projectlombok
            lombok
            true
        
        
        
            org.springframework.boot
            spring-boot-starter-test
            test
        
        
        
            com.github.pagehelper
            pagehelper-spring-boot-starter
            1.2.3
        

第二步,进行appliction配置

  1. 配置mybatis扫描文件:mybatis.mapper-locations= classpath:com/bdqn//mapper/.xml

  2. 配置mybatis打印sql语句:mybatis.configuration.log-impl=org.apache.ibatis.logging.stdout.StdOutImpl

  3. 配置连接数据库:

    spring:
    datasource:
    url: jdbc:mysql://localhost:3306/test?serverTimezone=GMT%2B8
    username: root
    password: root
    driver-class-name: com.mysql.cj.jdbc.Driver

  4. 分页配置

    pagehelper:
    helperDialect: mysql
    reasonable: true
    supportMethodsArguments: true
    params: count=countSql

代码(将application后缀名改为yml,这是springboot推荐支持的,带提示)

mybatis:
#扫描xml文件
  mapper-locations: classpath:com/bdqn/*/mapper/*.xml
#打印sql语句
  configuration:
    log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
#    map-underscore-to-camel-case: true
#配置连接数据库
spring:
  datasource:
    url: jdbc:mysql://localhost:3306/test?serverTimezone=GMT%2B8
    username: root
    password: root
    driver-class-name: com.mysql.cj.jdbc.Driver
#分页配置
pagehelper:
  helperDialect: mysql
  reasonable: true
  supportMethodsArguments: true
  params: count=countSql

第三步,将springboot启动类进行扫描接口配置

扫描Mapper接口
@MapperScan(basePackages={“com.bdqn.*.dao”})

Springboot整合myBatis(附加pagehelper分页插件)_第1张图片
扫描第二种方法,在mapper接口上进行@Mapper,当项目运行后,进行扫描

第四步创建三层架构项目

Springboot整合myBatis(附加pagehelper分页插件)_第2张图片

第四步,运行项目,访问Controller接口

测试结果
Springboot整合myBatis(附加pagehelper分页插件)_第3张图片
控制台打印的sql语句
Springboot整合myBatis(附加pagehelper分页插件)_第4张图片

分页插件pagehelper

springboot整合mybatis最简单的一个demo已经完成了,下面就来说一说分页如何编写。
分页有固定的接受参数,第一是当前页数,第二是每页个数。返回值是总数据条数和当前页码的数据。
在业务逻辑层ServiceImpl中进行编写。

   @Override
    public PageInfo getPage(Integer pageNum, Integer pageSize) {
        //分页处理,显示第pageNum页的pageSize条数据
        PageHelper.startPage(pageNum,pageSize);
        //查询分组列表
        List list = groupDao.getAll();
        // 获取分页信息
        PageInfo infoList = new  PageInfo<>(list);
        return infoList;
    }

1.在前台获得pageNum和pageSize
2.在PageHelper中定义当前页码和显示条数
3.通过PageInfo获得分页信息
4.返回PageInfo对象

在分页插件的PageInfo中还有很多的属性:
pageNum 当前页
pageSize 每页的数量
size 当前页的数量
startRow 当前页面第一个元素在数据库中的行号
endRow 当前页面最后一个元素在数据库中的行号
total 总记录数
pages 总页数
list 结果集
等等。。。。
还有一些属性没有介绍。

总结

本文章表名了springboot整合mybatis,外加附带讲解mybatis的分页插件。如果有讲的模糊不清晰的地方,希望大家提出来,一起共同进步。
如果有对springboot整合mybatisPlus有兴趣的可以查看我的文章,在里面也有详细的讲解和mybatisPlus的分页都有讲解。

你可能感兴趣的:(springboot)