Spring Boot 集成 MyBatis, 分页插件 PageHelper, 通用 Mapper

项目依赖


  
 org.mybatis.spring.boot
 mybatis-spring-boot-starter
 1.3.1
 
 
 
  tk.mybatis
  mapper-spring-boot-starter
  1.1.4
  
  
   
   com.github.pagehelper
   pagehelper-spring-boot-starter
   1.2.1
 

application.yml 配置

 mybatis:
  mapper-locations: classpath:mapping/*.xml
  type-aliases-package: com.angus.entity
 pagehelper:
  helperDialect: mysql
  reasonable: true
  supportMethodsArguments: true
  params: count=countSql

你可能感兴趣的:(Spring Boot 集成 MyBatis, 分页插件 PageHelper, 通用 Mapper)