SpringBoot整合mybatis+mybatis分页插件

第一步:相关依赖

	

    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


第二部:application.yml中的配置

这里将原本的.properties文件改为了springboot推荐的.yml文件
yml文件需要是utf-8编码,否则有中文会报错

#数据库的配置
spring:
 datasource:
  driver-class-name: com.mysql.cj.jdbc.Driver
  url: jdbc:mysql://localhost:3306/mytest?useUnicode=true&characterEncoding=utf8&serverTimezone=GMT
  username: root
  password: root
#mybatis的配置
mybatis:
 configuration:
#   sql日志显示,这里使用标准显示
  log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
#  数据库中如果有类似 如  user_name 等命名,会将 _后的字母大写,这里是为了和实体类对应
  map-underscore-to-camel-case: true
#  配置mapper文件的路径
 mapper-locations: classpath:com/example/boot_mybatis_two/*/mapper/*.xml
 #pageHelper配置(官网推荐配置)
pagehelper:
 helperDialect: mysql
 reasonable: true
 supportMethodsArguments: true
 params: count=countSql

第三部:入口文件中的设置

package com.example.boot_mybatis_two;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
//配置dao文件所在的包
@MapperScan("com.example.boot_mybatis_two.*.dao")
@SpringBootApplication
public class BootMybatisTwoApplication {
    public static void main(String[] args) {
        SpringApplication.run(BootMybatisTwoApplication.class, args);
    }
}

第四部:项目创建(包目录截图,分层结构)

SpringBoot整合mybatis+mybatis分页插件_第1张图片

第五步:(取user和dept中的一个来说这里取user模块)

实体类截图
SpringBoot整合mybatis+mybatis分页插件_第2张图片
mapper文件截图
SpringBoot整合mybatis+mybatis分页插件_第3张图片
Namespace中配置此mapper文件对应的dao文件
新建的xml文件是一个空的文件,其中一些东西可以搜索mybatis相关使用查找

对应的dao文件截图
SpringBoot整合mybatis+mybatis分页插件_第4张图片
service接口文件截图SpringBoot整合mybatis+mybatis分页插件_第5张图片
这里的PageInfo是导入的pageHelper依赖中的分页插件自带,这个方法传入的两个参数都是分页需要用到的

serviceImpl实现类截图
SpringBoot整合mybatis+mybatis分页插件_第6张图片
controller截图
在这里插入图片描述
简单的一个分页查询已经实现,然后测试一下
访问接口截图
在这里插入图片描述
返回数据截图:在这里插入图片描述
可以发现分页已经被做好了,数据也正确

配置了sql的相关日志显示所以在控制台可以看到
SpringBoot整合mybatis+mybatis分页插件_第7张图片
分页插件已经给我们将分页做了出来

到此完成 springboot整合mybatis+mybatis分页插件。并成功运行

你可能感兴趣的:(spring整合)