Spring6 对 集成MyBatis 开发运用(附有详细的操作步骤)
1. Spring6 对 集成MyBatis 开发运用(附有详细的操作步骤)
@
每博一文案
理想主义的花
终将盛开在浪漫主义的土壤里
我的热情
永远不会熄灭在现实主义的平凡里
我们终将上岸,阳光万里
2. 大概的实现步骤概述
- 第一步:准备数据库表
使用t_act表(账户表)
- 第二步:IDEA中创建一个模块,并引入依赖
- spring-context
- spring-jdbc
- mysql驱动
- mybatis
- mybatis-spring:mybatis提供的与spring框架集成的依赖
- 德鲁伊连接池
- junit
- 第三步:基于三层架构实现,所以提前创建好所有的包
- com.powernode.bank.mapper
- com.powernode.bank.service
- com.powernode.bank.service.impl
- com.powernode.bank.pojo
- 第四步:编写pojo
Account,属性私有化,提供公开的setter getter和toString。
- 第五步:编写mapper接口
AccountMapper接口,定义方法
- 第六步:编写mapper配置文件
在配置文件中配置命名空间,以及每一个方法对应的sql。
- 第七步:编写service接口和service接口实现类
- AccountService
- AccountServiceImpl
- 第八步:编写jdbc.properties配置文件
数据库连接池相关信息
- 第九步:编写mybatis-config.xml配置文件
- 该文件可以没有,大部分的配置可以转移到spring配置文件中。
- 如果遇到mybatis相关的系统级配置,还是需要这个文件。
- 第十步:编写spring.xml配置文件
- 组件扫描
- 引入外部的属性文件
- 数据源
- SqlSessionFactoryBean配置
- 注入mybatis核心配置文件路径
- 指定别名包
- 注入数据源
- Mapper扫描配置器
- 指定扫描的包
- 事务管理器DataSourceTransactionManager
- 注入数据源
- 启用事务注解
- 注入事务管理器
- 第十一步:编写测试程序,并添加事务,进行测试
3. 详细实现操作步骤
具体实现内容:我们运用 Spring6 和 MyBatis 实现一个转账操作(该转账操作,进行一个事务上的控制,运用 MyBatis 执行 SQL 语句)。
- 第一步:准备数据库表
使用t_act表(账户表)
连接数据库的工具有很多,这里我们可以使用IDEA工具自带的 DataBase 插件。可以根据下图提示自行配置:
一般是在 IDEA 的左边,DataBase
如下是 t_act 的表结构
如下是 t_act 的表数据内容:
- 第二步:IDEA中创建一个模块,并引入依赖
- spring-context
- spring-jdbc
- mysql驱动
- mybatis
- mybatis-spring:mybatis提供的与spring框架集成的依赖
- 德鲁伊连接池
- junit
我们先在pom.xml
配置文件当中导入相关的 jar
包信息:
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.rainbowsea</groupId>
<artifactId>spring6-016-mybaits</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
</properties>
<!--仓库-->
<repositories>
<!--spring里程碑版本的仓库-->
<repository>
<id>repository.spring.milestone</id>
<name>Spring Milestone Repository</name>
<url>https://repo.spring.io/milestone</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>6.0.0-M2</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
<version>6.0.0-M2</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.30</version>
</dependency>
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
<version>3.5.11</version>
</dependency>
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis-spring</artifactId>
<version>2.0.7</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid</artifactId>
<version>1.2.13</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
- 第三步:基于三层架构实现,所以提前创建好所有的包
- com.powernode.bank.mapper
- com.powernode.bank.service
- com.powernode.bank.service.impl
- com.powernode.bank.pojo
- 第四步:编写pojo
Account,属性私有化,提供公开的setter getter和toString。
- 第五步:编写mapper接口
AccountMapper接口,定义方法
package com.rainbowsea.bank.mapper;
import com.rainbowsea.bank.pojo.Account;
import java.util.List;
// 该接口的实现类不需要写,是mybatis通过动态代理机制生成的实现类
public interface AccountMapper {
// 这就是DAO,只要编写CRUD方法即可
/**
* 新增账户
* @param account
* @return
*/
int insert(Account account);
/**
* 根据账户删除账户
* @param actno
* @return
*/
int deleteByActno(String actno);
/**
* 根据账户更新
* @param account
* @return
*/
int update(Account account);
/**
* 根据账户查询账户
* @param actno
* @return
*/
Account selectByActno(String actno);
/**
* 查询所有的账户
* @return
*/
List<Account> selectAll();
}
- 第六步:编写mapper配置文件
在配置文件中配置命名空间,以及每一个方法对应的sql。
一定要注意,按照下图提示创建这个目录。注意是 斜杠(因为是创建目录) 不是点儿。在resources目录下新建。并且要和Mapper接口包对应上。因为只有这样,MyBatis 才会进行动态代理这个接口。
同时:如果接口叫做AccountMapper,配置文件必须是 AccountMapper.xml,名称要保持一致。
总结两点:就是路径位置要保持一致,对应的名称也要保持一致。后缀名不同。
同时在 AccountMapper.xml
当中编写 SQL 语句内容。
<?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.rainbowsea.bank.mapper.AccountMapper">
<insert id="insert">
insert into t_act(actno,balance) values(#{actno}, #{balance})
</insert>
<delete id="deleteByActno">
delete from t_act where actno = #{actno}
</delete>
<update id="update">
update t_act set balance = #{balance} where actno = #{actno}
</update>
<select id="selectByActno" resultType="Account">
select * from t_act where actno = #{actno}
</select>
<select id="selectAll" resultType="Account">
select * from t_act
</select>
</mapper>
- 第七步:编写service接口和service接口实现类
- AccountService
- AccountServiceImpl
编写 AccountService 业务接口,定义约束,规范,进行一个业务上的转账操作。
package com.rainbowsea.bank.service;
import com.rainbowsea.bank.pojo.Account;
import org.springframework.transaction.annotation.Transactional;
import java.util.List;
public interface AccountService {
/**
* 开户
* @param account
* @return
*/
int save(Account account);
/**
* 根据账号销户
* @param actno
* @return
*/
int deleteByActno(String actno);
/**
* 修改账户
* @param act
* @return
*/
int update(Account act);
/**
* 根据账号获取账户
* @param actno
* @return
*/
Account getByActno(String actno);
/**
* 获取所有账户
* @return
*/
List<Account> getAll();
/**
* 转账
* @param fromActno
* @param toActno
* @param money
*/
void transfer(String fromActno, String toActno, double money);
}
注意:要将编写的service实现类纳入IoC容器管理,同时注意需要开启事务@Transactional
package com.rainbowsea.bank.service.impl;
import com.rainbowsea.bank.mapper.AccountMapper;
import com.rainbowsea.bank.pojo.Account;
import com.rainbowsea.bank.service.AccountService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import java.util.List;
@Service(value = "accountServiceImpl")
@Transactional // 放在类中,下面的类中的所有方法都开启了事务
public class AccountServiceImpl implements AccountService {
// Could not find bean with name 'org.mybatis.spring.SqlSessionFactoryBean#0
@Autowired // 非简单类型自动装配
private AccountMapper accountMapper;
@Override
public int save(Account account) {
return accountMapper.insert(account);
}
@Override
public int deleteByActno(String actno) {
return accountMapper.deleteByActno(actno);
}
@Override
public int update(Account act) {
return accountMapper.update(act);
}
@Override
public Account getByActno(String actno) {
return accountMapper.selectByActno(actno);
}
@Override
public List<Account> getAll() {
return accountMapper.selectAll();
}
@Override
public void transfer(String fromActno, String toActno, double money) {
Account fromAct = accountMapper.selectByActno(fromActno);
if(fromAct.getBalance() < money) {
throw new RuntimeException("余额不足");
}
Account toAct = accountMapper.selectByActno(toActno);
//模拟异常
/* String s = null;
s.toString();
*/
// 内存上修改
fromAct.setBalance(fromAct.getBalance() - money);
toAct.setBalance(toAct.getBalance() + money);
// 数据库上修改数据内容
int count = accountMapper.update(fromAct);
count += accountMapper.update(toAct);
if(count != 2) {
throw new RuntimeException("转账失败");
}
}
}
- 第八步:在 resources 的根路径下,编写jdbc.properties配置文件
数据库连接池相关信息,账号,密码,同时注意要加上
jdbc
, 同时注意不要加任何的空格,同时是 放在类的根路径(resources )下
jdbc.driver=com.mysql.cj.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/spring6
jdbc.username=root
jdbc.password=MySQL123
- 第九步:编写mybatis-config.xml配置文件
- 该文件可以没有,大部分的配置可以转移到spring配置文件中。
- 如果遇到mybatis相关的系统级配置,还是需要这个文件。
- 放在类的根路径(resources )下,只开启日志,其他配置到spring.xml中。
)
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE configuration
PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration>
<!-- 帮助我们打印mybatis的日志信息。sql语句等-->
<settings>
<setting name="logImpl" value="STDOUT_LOGGING"/>
</settings>
</configuration>
- 第十步:编写spring.xml配置文件
- 组件扫描
- 引入外部的属性文件
- 数据源
- SqlSessionFactoryBean配置
- 注入mybatis核心配置文件路径
- 指定别名包
- 注入数据源
- Mapper扫描配置器
- 指定扫描的包
- 事务管理器DataSourceTransactionManager
- 注入数据源
- 启用事务注解
- 注入事务管理器
同样,我们还是将其防止到 类的根路径下(resources )
注意:当你在spring.xml文件中直接写标签内容时,IDEA会自动给你添加命名空间
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
https://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx.xsd">
<!-- 组件扫描,-->
<context:component-scan base-package="com.rainbowsea.bank"></context:component-scan>
<!-- 引入外部的属性配置文件-->
<context:property-placeholder location="jdbc.properties"></context:property-placeholder>
<!-- 数据源-->
<bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource">
<property name="driverClassName" 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>
</bean>
<!-- 配置SqlSessionFactoryBean "org.mybatis.spring.SqlSessionFactoryBean"-->
<bean class="org.mybatis.spring.SqlSessionFactoryBean">
<!-- 注入数据源-->
<property name="dataSource" ref="dataSource"></property>
<!-- 指定mybatis 核心配置文件-->
<property name="configLocation" value="mybatis-config.xml"></property>
<!-- 指定别名-->
<property name="typeAliasesPackage" value="com.rainbowsea.bank.pojo"></property>
</bean>
<!-- Mapper 扫描配置器,主要扫描Mapper 接口,生成代理类-->
<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
<property name="basePackage" value="com.rainbowsea.bank.mapper"></property>
</bean>
<!-- 事务管理器-->
<bean id="txManger" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<!-- 配置数据源-->
<property name="dataSource" ref="dataSource"></property>
</bean>
<!-- 启用事务注解,事务管理器-->
<tx:annotation-driven transaction-manager="txManger"></tx:annotation-driven>
</beans>
- 第十一步:编写测试程序,并添加事务,进行测试
)
package com.rainbowsea.spring6.test;
import com.rainbowsea.bank.service.AccountService;
import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class SpringMybatisTest {
@Test
public void testSpringMybatis() {
ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring6.xml");
// AccountService.class 左右两边保持一致性
AccountService accountService = applicationContext.getBean("accountServiceImpl", AccountService.class);
try {
accountService.transfer("act-001","act-002",10000);
System.out.println("转账成功");
} catch (Exception e) {
throw new RuntimeException(e);
}
}
}
没有异常,看是否能转账成功
模拟异常,看是否,能够进行正常的事务回滚
运行测试:
4. Spring配置文件的 import,导入外部xml 配置
如果 spring 配置文件有多个,可以在 spring 的核心配置文件中使用 import
进行引入,我们可以将组件扫描单独定义到一个配置文件中,如下:我们将一个《组件扫描》,定义到一个单独的名为common.xml
的配置文件当中去,并导入,引入到 spring 的配置文件当中使用。如下:
使用<import>
标签进行一个导入
<!-- 在Spring 的核心配置文件中引入其他的子 spring 配置文件-->
<import resource="common.xml"></import>
把模拟异常去了,测试,是否能够转账成功。如下:
注意:在实际开发中,service 单独配置到一个文件中,dao单独配置到一个文件中,然后在核心配置文件中引入,养成好习惯。
5. 总结:
Spring6 对集成MyBatis 开发:这里总的来说是十步,完成的。
一定要注意,按照下图提示创建这个目录。注意是 斜杠(因为是创建目录) 不是点儿。在resources目录下新建。并且要和Mapper接口包对应上。因为只有这样,MyBatis 才会进行动态代理这个接口。
同时:如果接口叫做AccountMapper,配置文件必须是 AccountMapper.xml,名称要保持一致。
总结两点:就是路径位置要保持一致,对应的名称也要保持一致。后缀名不同。
Spring 当中使用
<import>
标签导入外部xml 配置。
6. 最后:
“在这个最后的篇章中,我要表达我对每一位读者的感激之情。你们的关注和回复是我创作的动力源泉,我从你们身上吸取了无尽的灵感与勇气。我会将你们的鼓励留在心底,继续在其他的领域奋斗。感谢你们,我们总会在某个时刻再次相遇。”
Spring6 对 集成MyBatis 开发运用(附有详细的操作步骤)的更多相关文章
- 在springboot中集成mybatis开发
在springboot中利用mybatis框架进行开发需要集成mybatis才能进行开发,那么如何在springboot中集成mybatis呢?按照以下几个步骤就可以实现springboot集成myb ...
- 接下来将介绍C#如何设置子窗体在主窗体中居中显示,本文提供详细的操作步骤,需要的朋友可以参考下
接下来将介绍C#如何设置子窗体在主窗体中居中显示,本文提供详细的操作步骤,需要的朋友可以参考下 其实表面上看是很简单的 开始吧,现在有两个窗体Form1主窗体,Form2子窗体 而且我相信大部分人都会 ...
- Spring Boot集成MyBatis开发Web项目
1.Maven构建Spring Boot 创建Maven Web工程,引入spring-boot-starter-parent依赖 <project xmlns="http://mav ...
- Linux下自动备份MySQL数据库详细操作步骤(转载)
环境说明操作系统:CentOSIP:192.168.150.214Oracle数据库版本:Oracle11gR2用户:root 密码:123456端口:3306数据库:ts_0.ts_1.ts_2.t ...
- SSM框架开发web项目系列(五) Spring集成MyBatis
前言 在前面的MyBatis部分内容中,我们已经可以独立的基于MyBatis构建一个数据库访问层应用,但是在实际的项目开发中,我们的程序不会这么简单,层次也更加复杂,除了这里说到的持久层,还有业务逻辑 ...
- 详解Spring Boot集成MyBatis的开发流程
MyBatis是支持定制化SQL.存储过程以及高级映射的优秀的持久层框架,避免了几乎所有的JDBC代码和手动设置参数以及获取结果集. spring Boot是能支持快速创建Spring应用的Java框 ...
- Spring Boot 2.X(二):集成 MyBatis 数据层开发
MyBatis 简介 概述 MyBatis 是一款优秀的持久层框架,支持定制化 SQL.存储过程以及高级映射.它采用面向对象编程的方式对数据库进行 CRUD 的操作,使程序中对关系数据库的操作更方便简 ...
- 【持久化框架】Mybatis与Hibernate的详细对比
前言 这篇博文我们重点分析一下Mybatis与hibernate的区别,当然在前面的博文中我们已经深入的研究了Mybatis和Hibernate的原理. Mybatis [持久化框架]Myba ...
- 【持久化框架】Mybatis与Hibernate的详细对比(转发)
前言 这篇博文我们重点分析一下Mybatis与Hibernate的区别,当然在前面的博文中我们已经深入的研究了Mybatis和Hibernate的原理. Mybatis [持久化框架]Mybatis简 ...
- springboot集成mybatis及mybatis generator工具使用
原文链接 前言mybatis是一个半自动化的orm框架,所谓半自动化就是mybaitis只支持数据库查出的数据映射到pojo类上,而实体到数据库的映射需要自己编写sql语句实现,相较于hibernat ...
随机推荐
- Go 语言中的 Switch 语句详解
switch语句 使用switch语句来选择要执行的多个代码块中的一个. 在Go中的switch语句类似于C.C++.Java.JavaScript和PHP中的switch语句.不同之处在于它只执行匹 ...
- 使用IDEA直接连接数据库报错:Server returns invalid timezone. Go to 'Advanced' tab and set 'serverTimezone' property manually.
错误详情:使用IDEA直接连接数据库报错:Server returns invalid timezone. Go to 'Advanced' tab and set 'serverTimezone' ...
- echarts X轴类目名太长时隐藏,hover时显示全部
echarts图表X轴 在柱状图中,X轴类目名如果数据太长: echarts会默认进行隐藏部分字段: 如果我们想让每一个类目名都显示出来,需要进行额外的处理 X轴类目名太长时,默认只显示一部分类目名 ...
- 开发案例:使用canvas实现图表系列之折线图
一.功能结构 实现一个公共组件的时候,首先分析一下大概的实现结构以及开发思路,方便我们少走弯路,也可以使组件更加容易拓展,维护性更强.然后我会把功能逐个拆开来讲,这样大家才能学习到更详细的内容.下 ...
- k8s 深入篇———— 守护容器[九]
前言 守护容器,也叫做deamonset, 只做整理 正文 顾名思义,DaemonSet 的主要作用,是让你在 Kubernetes 集群里,运行一个 Daemon Pod. 所以,这个 Pod 有如 ...
- 距离传感器GT2的使用介绍
一. 1.使用注意要点: (1)要使用到"清零"功能. 确定其内部清零软元件,认准"外部请求",注意组别容易混淆. (2)如果要用到"复位" ...
- 微信小程序三种授权登录的方式
经过一段时间对微信小程序的研发后 总结出以下三种授权登录的方式,我给他们命名为'一次性授权''永久授权''不授权' 1.一次性授权常规写法,需要获取用户公开信息(头像,昵称等)时,判断调取授权登录接口 ...
- python实现不同颜色气球隔开摆放,并且提示不能摆放的情况
这个是一位隐秘人物让我做的一道题(如标题),我也分享出来了. 首先是成品展示(暂时没有做成可视化界面的样子): 我做的是把所有的气球录入进来,然后利用基础数据结构(字典,数据等)排序等,由于我是初学, ...
- 树莓派和esp8266之间使用tcp协议通信
树莓派代码: from flask import Flask, render_template import socket import threading app = Flask(__name__) ...
- PolarDB for PostgreSQL 内核解读 :HTAP架构介绍
简介:在 PolarDB 存储计算分离的架构基础上我们研发了基于共享存储的MPP架构步具备了 HTAP 的能力,对一套 TP的数据支持两套执行引擎:单机执行引擎用于处理高并发的 OLTP:MPP跨机分 ...