Spring 整合 Mybatis -- Spring入门保姆级教程(四)

news/2024/12/23 0:02:47/

文章目录

  • 前言
  • 五、Spring 整合 Mybatis
    • 1.Mybatis一般开发流程
    • 2.spring整合mybatis思路分析
    • 3.Spring整合Mybatis环境准备(注解开发)
    • 4.Spring整合Mybatis
    • 5.小结
  • 总结


前言

为了巩固所学的知识,作者尝试着开始发布一些学习笔记类的博客,方便日后回顾。当然,如果能帮到一些萌新进行新技术的学习那也是极好的。作者菜菜一枚,文章中如果有记录错误,欢迎读者朋友们批评指正。
(博客的参考源码可以在我主页的资源里找到,如果在学习的过程中有什么疑问欢迎大家在评论区向我提出)

五、Spring 整合 Mybatis

1.Mybatis一般开发流程

  1. 设计创建数据库表tbl_account
  • 建表查询语句示例
create database spring_db;
use spring_db;drop table if exists tbl_account;create table tbl_account(id int primary key auto_increment,name varchar(20),account varchar(20)
);INSERT INTO tbl_account VALUES (1, 'Tom', 1000);
INSERT INTO tbl_account VALUES (2, 'Jerry', 500);
  • 效果

在这里插入图片描述

  1. 创建对应maven模块并在pom.xml导入对应坐标
 <dependency><groupId>org.mybatis</groupId><artifactId>mybatis</artifactId><version>3.5.6</version></dependency><dependency><groupId>mysql</groupId><artifactId>mysql-connector-java</artifactId><version>5.1.47</version></dependency>
  1. 创建对应实体类Account
public class Account implements Serializable {//此处省略getter、setter和toString方法private Integer id;private String name;private Double money;}
  1. 创建mybatis核心配置文件mybatis-config.xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE configurationPUBLIC "-//mybatis.org//DTD Config 3.0//EN""http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration><properties resource="jdbc.properties"></properties><typeAliases><package name="com.itheima.domain"/></typeAliases><environments default="mysql"><environment id="mysql"><transactionManager type="JDBC"></transactionManager><dataSource type="POOLED"><property name="driver" value="${jdbc.driver}"></property><property name="url" value="${jdbc.url}"></property><property name="username" value="${jdbc.username}"></property><property name="password" value="${jdbc.password}"></property></dataSource></environment></environments><mappers><package name="org.example.dao"></package></mappers>
</configuration>
  1. 创建数据库表信息jdbc.properties
 jdbc.driver=com.mysql.jdbc.Driverjdbc.url=jdbc:mysql://localhost:3306/spring_db?useSSL=falsejdbc.username=rootjdbc.password=root
  1. 用注解的方式创建编写mappper代理接口AccountDao(或者是一个接口对应一个mapper文件)
public interface AccountDao {@Insert("insert into tbl_account(name,money)values(#{name},#{money})")void save(Account account);@Delete("delete from tbl_account where id = #{id} ")void delete(Integer id);@Update("update tbl_account set name = #{name} , money = #{money} where id = #{id} ")void update(Account account);@Select("select * from tbl_account")List<Account> findAll();@Select("select * from tbl_account where id = #{id} ")Account findById(Integer id);
}
  1. 创建模拟测试类APP
public class App {public static void main(String[] args) throws IOException {// 1. 创建SqlSessionFactoryBuilder对象SqlSessionFactoryBuilder sqlSessionFactoryBuilder = new SqlSessionFactoryBuilder();// 2. 加载SqlMapConfig.xml配置文件InputStream inputStream = Resources.getResourceAsStream("mybatis-config.xml");// 3. 创建SqlSessionFactory对象SqlSessionFactory sqlSessionFactory = sqlSessionFactoryBuilder.build(inputStream);// 4. 获取SqlSessionSqlSession sqlSession = sqlSessionFactory.openSession();// 5. 执行SqlSession对象执行查询,获取结果UserAccountDao accountDao = sqlSession.getMapper(AccountDao.class);Account ac = accountDao.findById(1);System.out.println(ac);// 6. 释放资源sqlSession.close();}
}
  1. 模拟测试类运行结果

在这里插入图片描述

  1. 文件结构参考

在这里插入图片描述

2.spring整合mybatis思路分析

  1. 我们知道spring的特点之一就是能管理bean,那mybatis中有哪些bean是需要交给spring去管理的呢?我们可以将mybatis的示例运行程序APP分为以下几个部分,通过观察我们可以发现主要有如下几个对象:SqlSessionFactorySqlSessionAccountDao

在这里插入图片描述

  • 虽然AccountDao是直接执行业务的,但是它不是根源上的对象,而且随着业务需求不同,造出来的对象也不一样,所以它不是最核心的对象。
  • SqlSession对象是由工厂造出来的,类似于连接池,该对象实际已经造好
  • 所以最核心的对象是SqlSessionFactory
  1. 通过观察Mybatis的核心配置文件我们可以将其分为如下几个部分:

在这里插入图片描述

  • 第一部分 的作用是配置加载数据库信息,有没有的区别是加载的信息是否在本配置文件获取,与SqlSessionFactory没什么关系
  • 第二部分 的作用是配置Mybatis操作完后得到的数据是什么类型,是SqlSessionFactory对象中可选的一个属性
  • 第三部分 dataSourcre 标签中的部分是数据库连接信息,是必须的,如果没有该内容,SqlSessionFactory无法获知操作的数据库信息
  • 第三部分 transactionManager 标签中的部分是事务处理相关内容,与SqlSessionFactory也有关系,本博客暂时不做探讨
  • 第四部分 是业务操作相关的,即使没有,SqlSessionFactory也能创建。但是在实际开发中,如果需要用到Mapper代理开发,就需要配置这部分内容。
  1. 小结

综上考虑,spring要重点管理的mybatis中的核心对象是 SqlSessionFactory,用Spring创建出SqlSessionFactory对象和业务相关的 Mapper映射对象是我们的主要目标。

3.Spring整合Mybatis环境准备(注解开发)

  1. 在pom.xml文件中导入spring开发相关坐标
    <dependency><groupId>org.springframework</groupId><artifactId>spring-context</artifactId><version>5.2.10.RELEASE</version></dependency><dependency><groupId>com.alibaba</groupId><artifactId>druid</artifactId><version>1.1.16</version></dependency><!--spring操作数据库--><dependency><groupId>org.springframework</groupId><artifactId>spring-jdbc</artifactId><version>5.2.10.RELEASE</version></dependency><!--spring整合mybatis--><dependency><groupId>org.mybatis</groupId><artifactId>mybatis-spring</artifactId><version>1.3.0</version></dependency>
  1. 创建Spring核心配置类SpringConfig
 @Configuration@ComponentScan("org.example")public class SpringConfig {}
  1. 创建业务接口AccountService
public interface AccountService {void save(Account account);void delete(Integer id);void update(Account account);List<Account> findAll();Account findById(Integer id);}
  1. 创建对应的实现类AccountServiceImpl
@Service
public class AccountServiceImpl implements AccountService {@Autowiredprivate AccountDao accountDao;public void save(Account account) {accountDao.save(account);}public void update(Account account){accountDao.update(account);}public void delete(Integer id) {accountDao.delete(id);}public Account findById(Integer id) {return accountDao.findById(id);}public List<Account> findAll() {return accountDao.findAll();}
}
  1. 数据库连接信息
  • 创建数据库信息配置类JdbcConfig
public class JdbcConfig {@Value("${jdbc.driver}")private String driver;@Value("${jdbc.url}")private String url;@Value("${jdbc.username}")private String userName;@Value("${jdbc.password}")private String password;@Beanpublic DataSource dataSource(){DruidDataSource ds = new DruidDataSource();ds.setDriverClassName(driver);ds.setUrl(url);ds.setUsername(userName);ds.setPassword(password);return ds;}
}
  • 加载数据库信息properties文件
@Configuration
@ComponentScan("org.example")
@PropertySource("classpath:jdbc.properties")
public class SpringConfig {
}
  • 加载数据库信息配置类

方式一:在核心配置类上加@Configuration,通过Spring核心配置类SpringConfig中的@ComponentScan注解扫描

方式二:手工导入

@Configuration
@ComponentScan("org.example")
@PropertySource("classpath:jdbc.properties")
@Import(JdbcConfig.class)
public class SpringConfig {
}
  1. 文件结构预览

在这里插入图片描述

4.Spring整合Mybatis

  1. MybatisConfig配置类
  • 创建Mybatis配置类MybatisConfig(实现目标:创建SqlSessionFactoryBean)
public class MybatisConfig {//定义bean,SqlSessionFactoryBean,用于产生SqlSessionFactory对象@Beanpublic SqlSessionFactoryBean sqlSessionFactory(DataSource dataSource){SqlSessionFactoryBean ssfb = new SqlSessionFactoryBean();//设置别名ssfb.setTypeAliasesPackage("org.example.domain");//配置数据源ssfb.setDataSource(dataSource);return ssfb;}//定义bean,返回MapperScannerConfigurer对象@Beanpublic MapperScannerConfigurer mapperScannerConfigurer(){MapperScannerConfigurer msc = new MapperScannerConfigurer();msc.setBasePackage("org.example.dao");return msc;}}
  • 加载Mybatis配置类
@Configuration
@ComponentScan("org.example")
@PropertySource("classpath:jdbc.properties")
@Import({JdbcConfig.class,MybatisConfig.class})
public class SpringConfig {
}
  1. 创建模拟测试类
public class App2 {public static void main(String[] args) {ApplicationContext ctx = new AnnotationConfigApplicationContext(SpringConfig.class);AccountService accountService = ctx.getBean(AccountService.class);Account ac = accountService.findById(1);System.out.println(ac);}
}
  1. 运行结果

在这里插入图片描述
4. 文件结构预览

在这里插入图片描述

5.小结

简单来说,Spring整合Mybatis就是在Spring开发的基础上多了一个MyBatisConfig配置文件

在这里插入图片描述
在这里插入图片描述

总结

欢迎各位留言交流以及批评指正,如果文章对您有帮助或者觉得作者写的还不错可以点一下关注,点赞,收藏支持一下。
(博客的参考源码可以在我主页的资源里找到,如果在学习的过程中有什么疑问欢迎大家在评论区向我提出)


http://www.ppmy.cn/news/77736.html

相关文章

Grow模型

Grow模型 该模型是约翰.惠特默&#xff0c;在1992年其著作《高绩效教练》一书中提出的&#xff0c;核心是围绕设定目标和寻找解决方案的有效工具。 模型介绍 GROW模型给到应用者一个可以高效的设立目标并制定计划&#xff0c;最终解决问题的思路框架。 GROW 由四个步骤构成&am…

gym不渲染画面的解决方案(gym版本号0.26.2)

确认gym版本号 我安装了新版gym&#xff0c;版本号是0.26.2&#xff0c;不渲染画面的原因是&#xff0c;新版gym需要在初始化env时新增一个实参render_mode‘human’&#xff0c;并且不需要主动调用render方法&#xff0c;官方文档入门教程如下 import gym import numpy as n…

R语言结构方程模型(SEM)在生态学领域中的实践应用

结构方程模型&#xff08;Sructural Equation Model&#xff09;是一种建立、估计和检验研究系统中多变量间因果关系的模型方法&#xff0c;它可以替代多元回归、因子分析、协方差分析等方法&#xff0c;利用图形化模型方式清晰展示研究系统中变量间的因果网络关系&#xff0c;…

什么是IP地址及IP地址分类详解

概念 IP地址&#xff0c;英文名为IP Address&#xff0c;是internet protocol address的缩写&#xff0c;译为互联网协议地址&#xff0c;又译为网际协议地址。它是IP协议&#xff08;internet protocol &#xff09;提供的一种统一的地址格式&#xff0c;分配给使用IP协议的设…

Ubuntu/Debian/CentOS搭建Socks5代理一键脚本

说明 Socks5属于明文代理&#xff0c;不要用于科学上网&#xff0c;否则会被阻断端口&#xff0c;可用于正常的跳板使用&#xff1b; 比如SSH转发加速国外VPS的连接速度&#xff0c;特别是一些延迟高或者丢包高的VPS&#xff1b; 使用Socks5转发后SSH就可以快速稳定的连接了&a…

C语言中这么骚的退出程序方式你知道几个?

前言 在本篇文章当中主要给大家介绍C语言当中一些不常用的特性&#xff0c;比如在main函数之前和之后设置我们想要执行的函数&#xff0c;以及各种花式退出程序的方式。 1、main函数是最先执行和最后执行的函数吗&#xff1f; 1&#xff09;C语言构造和析构函数 通常我们在…

QT学习笔记-QT5.15.2使用qtopcua5.15.2实现与PLC通讯(上)

QT学习笔记-QT5.15.2使用qtopcua5.15.2实现与PLC通讯&#xff08;上&#xff09; 环境说明背景思路perl依赖安装qtopcua插件编译解决编译报错问题解决安装mingw32-make install报错问题 环境说明 操作系统&#xff1a;Windows10 专业版 64位 开发工具&#xff1a;Qt 5.15.2 OP…

Windows环境下安装及部署Nginx教程(含多个站点部署)

目录 一、下载安装Nginx 二、部署Nginx 三、多站点部署的情况 1、nginx域名解析&#xff0c;虚拟主机&#xff1a; 四、带https的站点如何部署&#xff0c;与http的有何不同点&#xff1f; 一、下载安装Nginx 1、官网下载地址&#xff1a;https://nginx.org/en/download.h…