前言

目前而言,国内大家使用最多的持久层框架可能还是 MyBatis 吧,那既然如此,更强大的 Spring Boot 遇上炽手可热的 MyBatis,又会擦出什么样的火花呢?

那本文就来看看,如何利用 SpringBoot 来整合 Mybatis。

如下图是总结的整合过程的大概流程,那接下来我们就来开始具体的整合操作!

Spring Boot 通过注解的方式整合 MyBatis - 图1

整合过程

最终项目结构如下图所示:

Spring Boot 通过注解的方式整合 MyBatis - 图2

新建 Spring Boot 项目

新建一个 Spring Boot 项目,添加 Web 组件,具体过程可以参照我的另一篇博客 创建 Spring Boot 项目的方式

添加 pom 依赖

由于要整合 MyBatis,所以我们需要在项目的配置文件 pom.xml 中添加 mysql 驱动和 SpringBoot MyBatis 整合包;

  1. <!-- springboot mybatis 整合包 -->
  2. <dependency>
  3. <groupId>org.mybatis.spring.boot</groupId>
  4. <artifactId>mybatis-spring-boot-starter</artifactId>
  5. <version>2.1.3</version>
  6. </dependency>
  7. <!-- mysql 驱动 -->
  8. <dependency>
  9. <groupId>mysql</groupId>
  10. <artifactId>mysql-connector-java</artifactId>
  11. <scope>runtime</scope>
  12. </dependency>

准备数据库

  1. 数据库创建及输入插入

准备一张 user 表,有 idnameage 三个属性,其中 id 为主键且自增,然后插入三条数据;

  1. CREATE TABLE `user` (
  2. `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键',
  3. `name` varchar(50) DEFAULT NULL COMMENT '姓名',
  4. `age` int(11) DEFAULT NULL COMMENT '年龄',
  5. PRIMARY KEY (`id`)
  6. ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
  7. INSERT INTO user values (1,"村雨遥",25);
  8. INSERT INTO user values (2,"张三",26);
  9. INSERT INTO user values (3,"李四",27);
  1. 数据源配置

在项目配置文件 application.properties 中配置数据源;

  1. # 数据库配置
  2. spring.datasource.username=root
  3. spring.datasource.password=0908
  4. spring.datasource.url=jdbc:mysql://localhost:3306/springboot?useUnicode=true&characterEncoding=UTF-8&serverTimezone=UTC
  5. spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver

pojo 层

根据数据库创建实体类,为了精简代码,后面过程中都或多或少用了 Lombok 插件,所以需要事先在 pom.xml 引入;

  1. <dependency>
  2. <groupId>org.projectlombok</groupId>
  3. <artifactId>lombok</artifactId>
  4. <optional>true</optional>
  5. </dependency>
  1. package com.cunyu.pojo;
  2. import lombok.AllArgsConstructor;
  3. import lombok.Data;
  4. import lombok.NoArgsConstructor;
  5. /**
  6. * @author : cunyu
  7. * @version : 1.0
  8. * @className : User
  9. * @date : 2020/7/26 20:44
  10. * @description : User 实体类
  11. */
  12. @Data
  13. @NoArgsConstructor
  14. @AllArgsConstructor
  15. public class User {
  16. private Long id;
  17. private String name;
  18. private Integer age;
  19. }

dao 层

实体类创建完成后,编写实体类对应接口;

  1. package com.cunyu.dao;
  2. import com.cunyu.pojo.User;
  3. import org.apache.ibatis.annotations.Mapper;
  4. import org.apache.ibatis.annotations.Select;
  5. /**
  6. * @InterfaceName : UserDao
  7. * @Author : cunyu
  8. * @Date : 2020/7/26 20:47
  9. * @Version : 1.0
  10. * @Description : User 类对应接口
  11. **/
  12. @Mapper
  13. public interface UserDao {
  14. /**
  15. * @param id 用户 id
  16. * @return 对应 id 的用户
  17. * @description 根据用户 id 查询用户
  18. * @date 2020/7/26 20:48
  19. * @author cunyu1943
  20. * @version 1.0
  21. */
  22. @Select("SELECT id,name,age FROM user where id = #{id}")
  23. User getUserById(Long id);
  24. }

service 层

  1. service 接口
  1. package com.cunyu.service;
  2. import com.cunyu.pojo.User;
  3. /**
  4. * @author : cunyu
  5. * @version : 1.0
  6. * @className : UserService
  7. * @date : 2020/7/26 20:57
  8. * @description : User service 接口
  9. */
  10. public interface UserService {
  11. /**
  12. * @param id 用户 iD
  13. * @return 对应 id 的用户
  14. * @description 根据 id 查找用户
  15. * @date 2020/7/26 20:58
  16. * @author cunyu1943
  17. * @version 1.0
  18. */
  19. User getUserById(Long id);
  20. }
  1. service 接口实现类
  1. package com.cunyu.service.impl;
  2. import com.cunyu.dao.UserDao;
  3. import com.cunyu.pojo.User;
  4. import com.cunyu.service.UserService;
  5. import org.springframework.beans.factory.annotation.Autowired;
  6. import org.springframework.stereotype.Service;
  7. /**
  8. * @author : cunyu
  9. * @version : 1.0
  10. * @className : UserServiceImpl
  11. * @date : 2020/7/26 20:59
  12. * @description : service 接口实现类
  13. */
  14. @Service
  15. public class UserServiceImpl implements UserService {
  16. @Autowired
  17. private UserDao userDao;
  18. @Override
  19. public User getUserById(Long id) {
  20. return userDao.getUserById(id);
  21. }
  22. }

controller 层

  1. package com.cunyu.controller;
  2. import com.cunyu.pojo.User;
  3. import com.cunyu.service.UserService;
  4. import org.springframework.beans.factory.annotation.Autowired;
  5. import org.springframework.web.bind.annotation.GetMapping;
  6. import org.springframework.web.bind.annotation.RestController;
  7. /**
  8. * @author : cunyu
  9. * @version : 1.0
  10. * @className : UserController
  11. * @date : 2020/7/26 21:01
  12. * @description : User controller
  13. */
  14. @RestController
  15. public class UserController {
  16. /**
  17. * 自动注入
  18. */
  19. @Autowired
  20. private UserService userService;
  21. @GetMapping("/user")
  22. public User getUserById() {
  23. User user = userService.getUserById(1L);
  24. return user;
  25. }
  26. }

入口程序配置

在入口程序中配置 mapper 自动扫描;

  1. package com.cunyu;
  2. import org.mybatis.spring.annotation.MapperScan;
  3. import org.springframework.boot.SpringApplication;
  4. import org.springframework.boot.autoconfigure.SpringBootApplication;
  5. @MapperScan(basePackages = "com.cunyu.dao")
  6. @SpringBootApplication
  7. public class MybatisXmlApplication {
  8. public static void main(String[] args) {
  9. SpringApplication.run(MybatisXmlApplication.class, args);
  10. }
  11. }

网页测试

完成上述所有步骤之后,在浏览器中访问 http://localhost:8080/user,就可以在网页中显示对应 idUser 对象的所有信息;

Spring Boot 通过注解的方式整合 MyBatis - 图3

总结

以上就是 Spring Boot 整合 MyBatis 的具体过程了,不过你可能也发现了,我们在 DAO 层未使用任何 XML 文件,取而代之的是各种不同的注解。那我们下一篇文章就来看看,Spring Boot 如何通过 XML 的方式来整合 MyBatis