news 2026/1/23 12:46:36

SpringBoot3 整合 Mybatis 完整版

作者头像

张小明

前端开发工程师

1.2k 24
文章封面图
SpringBoot3 整合 Mybatis 完整版
本文记录一下完整的 SpringBoot3 整合 Mybatis 的步骤。 只要按照本步骤来操作,整合完成后就可以正常使用。

1. 添加数据库驱动依赖

以 MySQL 为例。
当不指定 依赖版本的时候,会 由 springboot 自动管理。

<dependency> <groupId>com.mysql</groupId> <artifactId>mysql-connector-j</artifactId> <!-- <version>8.0.32</version> --> </dependency>

2. 添加 MyBatis 依赖

第三方的依赖库,需要明确的指定版本号。推荐使用最新的即可。

<!-- https://mvnrepository.com/artifact/org.mybatis.spring.boot/mybatis-spring-boot-starter --> <dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter</artifactId> <version>3.0.3</version> </dependency>

3. 配置数据源信息

在 application.yaml 文件中添加数据源的信息

spring: datasource: # 数据库连接驱动 driver-class-name: com.mysql.cj.jdbc.Driver # 数据源类型: 默认的是 Hikari type: com.zaxxer.hikari.HikariDataSource # 数据库连接地址 url: jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=Asia/Shanghai # 数据库连接用户名 username: root # 数据库连接密码 password: 12345678

4. 配置 mybatis

在 application.yaml 文件中添加mybatis的相关配置。

# mybatis 的配置 mybatis: # 配置 mybatis 的xml文件的扫描路径 mapper-locations: classpath:mybatis/**/*.xml # 配置实体类的扫描路径 type-aliases-package: com.testabc.demo.ssmtest configuration: # 开启驼峰命名转换 map-underscore-to-camel-case: true # 开启日志 #log-impl: org.apache.ibatis.logging.stdout.StdOutImpl log-impl: org.apache.ibatis.logging.slf4j.Slf4jImpl # 指定日志级别 : 对mybatis的日志输出 logging: level: com.testabc.demo.ssmtest: debug

5. 功能开发

5.1 建表

简单创建一张表。包含了普通属性,标准的下划线属性。

CREATE TABLE `test`.`student` ( `id` int NOT NULL, `name` varchar(20) NOT NULL, `age` int NOT NULL, `other_message` varchar(100) NULL, PRIMARY KEY (`id`) );
5.2 创建普通的bean类

结合表结构,创建普通的一个bean类。此时属性用标准的驼峰命名

package com.testabc.demo.ssmtest; public class Student { private int id; private String name; private int age; private String otherMessage; 。。。。。。 构造方法 getter/setter toString 方法 }
5.3 创建mapper接口

注意 : 此处的接口用到了@Mapper注解。先写上吧,没有副作用。

package com.testabc.demo.ssmtest; import org.apache.ibatis.annotations.Param; import org.springframework.stereotype.Repository; @Mapper public interface StudentMapper { // 根据id查询student的方法 Student getStudentById(@Param("id") int id); }
5.4 创建xml文件

classpath:/resources/mybatis/目录下新增StudentMapper.xml文件。

<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" > <mapper namespace="com.testabc.demo.ssmtest.StudentMapper"> <select id="getStudentById" resultType="com.testabc.demo.ssmtest.Student"> select * from student where id = #{id} </select> </mapper>
5.5 创建controller类
package com.testabc.demo.ssmtest; @RestController public class StudentController { /** * 通过构造方法的方式注入 StudentMapper */ private final StudentMapper studentMapper; public StudentController(StudentMapper studentMapper) { this.studentMapper = studentMapper; } @GetMapping("/getStudentById/{id}") public Student getStudentById(@PathVariable("id") int id){ Student student = null; student = studentMapper.getStudentById(id); return student; } }
5.6 配置扫描的包

在 项目的 启动类上添加注解MapperScan(xxxx), 指定要扫描的 mapper 接口的包路径。

package com.testabc.demo; import org.mybatis.spring.annotation.MapperScan; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication @MapperScan("com.testabc.demo.ssmtest") public class DemoApplication { public static void main(String[] args) { // 这个工具会返回一个 ApplicationContext 的对象 var ioc = SpringApplication.run(DemoApplication.class, args); } }

6. 功能测试

浏览器中访问测试。



成功,至此,已经完成了 SpringBoot3 整合 Mybatis 的步骤。

版权声明: 本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若内容造成侵权/违法违规/事实不符,请联系邮箱:809451989@qq.com进行投诉反馈,一经查实,立即删除!
网站建设 2026/1/22 18:05:44

PDF-Extract-Kit教程:如何构建自定义PDF解析流程

PDF-Extract-Kit教程&#xff1a;如何构建自定义PDF解析流程 1. 引言 1.1 背景与需求 在科研、教育和企业文档处理中&#xff0c;PDF 是最常用的文件格式之一。然而&#xff0c;PDF 的非结构化特性使得从中提取文本、公式、表格等关键信息变得极具挑战。传统方法如简单 OCR …

作者头像 李华
网站建设 2026/1/22 19:38:00

PDF-Extract-Kit教程:自定义模型训练与微调方法

PDF-Extract-Kit教程&#xff1a;自定义模型训练与微调方法 1. 引言 1.1 技术背景与应用场景 在数字化文档处理领域&#xff0c;PDF 文件因其格式稳定、跨平台兼容性强而被广泛使用。然而&#xff0c;PDF 中的信息提取——尤其是结构化内容&#xff08;如表格、公式、图文布…

作者头像 李华
网站建设 2026/1/22 16:12:05

PDF-Extract-Kit性能对比:CPU与GPU处理效率测评

PDF-Extract-Kit性能对比&#xff1a;CPU与GPU处理效率测评 1. 引言 1.1 技术背景与选型需求 在当前AI驱动的文档智能处理领域&#xff0c;PDF内容提取已成为科研、教育、出版等行业数字化转型的核心环节。传统OCR工具虽能完成基础文字识别&#xff0c;但在面对复杂版式、数…

作者头像 李华
网站建设 2026/1/18 2:40:31

PDF-Extract-Kit部署实战:边缘计算环境PDF处理

PDF-Extract-Kit部署实战&#xff1a;边缘计算环境PDF处理 1. 引言 1.1 边缘计算场景下的文档智能需求 随着物联网和边缘计算的快速发展&#xff0c;越来越多的设备需要在本地完成复杂的数据处理任务。在教育、科研、金融等领域&#xff0c;PDF文档作为信息传递的主要载体&a…

作者头像 李华
网站建设 2026/1/18 6:05:09

PDF-Extract-Kit实战:法律条文自动关联系统

PDF-Extract-Kit实战&#xff1a;法律条文自动关联系统 1. 引言&#xff1a;从PDF智能提取到法律知识自动化 在法律科技&#xff08;LegalTech&#xff09;快速发展的今天&#xff0c;如何高效处理海量的法律法规、司法解释和判例文件成为行业核心痛点。传统的人工查阅与比对…

作者头像 李华
网站建设 2026/1/23 12:05:13

科哥PDF-Extract-Kit更新解析:v1.0版本功能全览

科哥PDF-Extract-Kit更新解析&#xff1a;v1.0版本功能全览 1. 引言&#xff1a;PDF智能提取的工程化实践 在科研、教育和文档处理领域&#xff0c;PDF作为标准格式承载了大量结构化与非结构化信息。然而&#xff0c;传统工具在面对复杂版式&#xff08;如公式、表格、图文混…

作者头像 李华