欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Spring Boot 整合 TKMybatis 二次简化持久层代码的实现

程序员文章站 2022-06-28 07:56:28
经常用 mybatis 的的都知道,使用这个框架存在一个非常不友善的问题就是,就是每操作一个单表就需要自己手写一个 xml 文件,虽然说可以用工具生成 xml 和实体类可以解决这个问题,但是二次开发的...

经常用 mybatis 的的都知道,使用这个框架存在一个非常不友善的问题就是,就是每操作一个单表就需要自己手写一个 xml 文件,虽然说可以用工具生成 xml 和实体类可以解决这个问题,但是二次开发的时候对某个表字段进行修改的时候,生成 xml 文件就不现实啦。最近发现 tk.mybatis 就非常好的解决了这个问题。tk.mybatis 整合了 mybatis 框架,在其基础上提供了很多工具,封装了常用的增删改查 sql 语句,可以让我们的开发效率更高。在这里和大家分享一下。

引入依赖

pom.xml 中引入 mapper-spring-boot-starter 依赖

<!-- druid-spring-boot-starter -->
<dependency>
 <groupid>com.alibaba</groupid>
 <artifactid>druid-spring-boot-starter</artifactid>
 <version>1.1.10</version>
</dependency>

<!-- 数据库连接依赖 -->
<dependency>
 <groupid>mysql</groupid>
 <artifactid>mysql-connector-java</artifactid>
 <version>5.1.40</version>
 <scope>runtime</scope>
</dependency>

<!-- mapper-spring-boot-starter -->
<dependency>
 <groupid>tk.mybatis</groupid>
 <artifactid>mapper-spring-boot-starter</artifactid>
 <version>2.0.2</version>
</dependency>

相关配置

application.yml 中添加相关配置

spring:
 datasource:
 druid:
  url: jdbc:mysql://127.0.0.1:3306/test?servertimezone=gmt%2b8&useunicode=true&characterencoding=utf-8&usessl=false
  username: root
  password: 123456
  initial-size: 1
  min-idle: 1
  max-active: 20
  test-on-borrow: true
  driver-class-name: com.mysql.jdbc.driver # mysql 8.x: com.mysql.cj.jdbc.driver
  
mybatis:
 type-aliases-package: # 实体类的存放路径,如:com.antoniopeng.hello.spring.boot.entity
 mapper-locations: classpath:mapper/*.xml # mapper.xml 文件存放路径,这里存放在配置文件目录 resources 下
 
logging:
 level:
 com.antoniopeng.hello.springboot.mybatis: debug # 配置监听日志

application 入口类中使用 tk.mybatis.spring.annotation 包下的 @mapperscan 注解指定 mapper 接口的扫描路径

import org.springframework.boot.springapplication;
import org.springframework.boot.autoconfigure.springbootapplication;
import tk.mybatis.spring.annotation.mapperscan;

@mapperscan(value = "com.antoniopeng.springboot.mybatis.mapper")
@springbootapplication
public class hellospringbootmybatisapplication {

 public static void main(string[] args) {
  springapplication.run(hellospringbootmybatisapplication.class, args);
 }

}

整合 pagehelper 分页插件

引入依赖

pom.xml 中引入 pagehelper-spring-boot-starter 依赖

<!-- pagehelper-spring-boot-starter -->
<dependency>
 <groupid>com.github.pagehelper</groupid>
 <artifactid>pagehelper-spring-boot-starter</artifactid>
 <version>1.2.5</version>
</dependency>

分页查询示例

@runwith(springrunner.class)
@springboottest(classes = application.class)
@transactional
@rollback
public class mybatistests {

 @autowired
 userservice userservice;

 /**
 * 测试分页插件
 */
 @test
 public void testpagehelper() {
 
	example example = new example(user.class);
	 // 查询条件
  example.createcriteria().andequalto("userid", "1")
  // 分页参数
  pagehelper.startpage(1, 10, "create_time desc");
  // 获取分页列表数据
  list<user> userlist = userservice.selectbyexample(example);
  pageinfo pageinfo = new pageinfo(userlist);
  // 获取列表总数
  int usercount = (int) pageinfo.gettotal();
 }
}

到此这篇关于spring boot 整合 tkmybatis 二次简化持久层代码的实现的文章就介绍到这了,更多相关spring boot 整合 tkmybatis 内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!