【SSM】Spring集成Mybatis
创始人
2024-06-02 14:59:37
0

Spring框架集成Mybtis

  • 为啥学习集成 Mybatis ORM 框架
  • 实现步骤

为啥学习集成 Mybatis ORM 框架

虽然Spring中提供了JDBCTemplate模块,已经很大程度了解决了JDBC代码的复杂度,但它仍然是和Java代码写在一起的。反观 Mybatis 将 Sql 语句写在配置文件中,使得SQL语句和程序实现了松耦合。而且提供了些许标签,使得SQL可以是动态的。在ORM基础上想要更好的用Spring的DI、AOP、事务处理、Junit支持等实现成果,学会使用 Spring 框架集成 Mybatis 是大势所趋。

实现步骤

  • 第一步:准备数据库表

在这里插入图片描述

  • 第二步:IDEA中创建一个模块,并引入以下依赖
  1. spring-context
  2. spring-jdbc
  3. mysql驱动
  4. mybatis
  5. mybatis-spring:mybatis提供的与spring框架集成的依赖
  6. druid:德鲁伊连接池
  7. junit
    org.springframeworkspring-context6.0.5org.springframeworkspring-jdbc6.0.5mysqlmysql-connector-java8.0.31org.mybatismybatis3.5.11org.mybatismybatis-spring3.0.1com.alibabadruid1.2.16junitjunit4.13test
  • 第三步:基于三层架构实现,所以提前创建好所有的包
  1. XXXX.mapper
  2. XXXX.service
  3. XXXX.service.impl
  4. XXXX.bean

在这里插入图片描述

  • 第四步:编写bean
    Account,按bean规范创建

在这里插入图片描述

  • 第五步:编写Mapper接口
    AccountMapper接口,定义与数据库交互的方法
package com.ncpowernode.spring.mappers;import com.ncpowernode.spring.bean.Account;import java.util.List;public interface AccountMapper {List selectAll();Account selectByActno(String actno);int insert(Account account);int deleteByActno(String actno);int update(Account account);
}
  • 第六步:编写mapper配置文件

insert into t_act values(#{actno},#{balance})delete from t_act where actno = #{actno};update t_act set balance = #{balance} where actno = #{actno};
  • 第七步:编写service接口和service接口的实现类

service接口

package com.ncpowernode.spring.service;import com.ncpowernode.spring.bean.Account;import java.util.List;public interface AccountService {int save(Account act);int deleteByActno(String actno);List getAll();void transfer(String fromActno,String toActno,double money);}

service实现

package com.ncpowernode.spring.service.impl;import com.ncpowernode.spring.bean.Account;
import com.ncpowernode.spring.mappers.AccountMapper;
import com.ncpowernode.spring.service.AccountService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;import java.util.List;@Service("accountService")
@Transactional
public class AccountServiceImpl implements AccountService {@Autowired@Qualifier("accountMapper")private AccountMapper accountMapper;@Overridepublic int save(Account act) {return accountMapper.insert(act);}@Overridepublic int deleteByActno(String actno) {return accountMapper.deleteByActno(actno);}@Overridepublic List getAll() {return accountMapper.selectAll();}@Overridepublic void transfer(String fromActno, String toActno, double money) {// 判断余额Account fromAccount = accountMapper.selectByActno(fromActno);if (fromAccount.getBalance()
  • 第八步:编写jdbc.properties配置文件
    数据库连接池相关信息
jdbc.driver=com.mysql.cj.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/???
jdbc.username=???
jdbc.password=???
  • 第九步:编写mybatis-config.xml核心配置文件



  • 第十步:编写spring.xml配置文件
    组件扫描
    引入外部的属性文件
    数据源
    SqlSessionFactoryBean配置(注入mybatis核心配置文件路径,指明别名包,注入数据源)
    Mapper扫描配置器(指定扫描的包)
    事务管理器(DataSourceTransactionManager,注入数据源)
    启动事务注解(注入事务管理器)


  • 第十一步:编写测试程序,并添加事务,进行测试。
	@Testpublic void testSM(){ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring.xml");AccountService accountService = applicationContext.getBean("accountService", AccountServiceImpl.class);accountService.getAll().forEach(System.out::println);accountService.transfer("act-001","act-002",10000.0);}

测试结果

在这里插入图片描述

在这里插入图片描述

相关内容

热门资讯

喜欢穿一身黑的男生性格(喜欢穿... 今天百科达人给各位分享喜欢穿一身黑的男生性格的知识,其中也会对喜欢穿一身黑衣服的男人人好相处吗进行解...
发春是什么意思(思春和发春是什... 本篇文章极速百科给大家谈谈发春是什么意思,以及思春和发春是什么意思对应的知识点,希望对各位有所帮助,...
网络用语zl是什么意思(zl是... 今天给各位分享网络用语zl是什么意思的知识,其中也会对zl是啥意思是什么网络用语进行解释,如果能碰巧...
为什么酷狗音乐自己唱的歌不能下... 本篇文章极速百科小编给大家谈谈为什么酷狗音乐自己唱的歌不能下载到本地?,以及为什么酷狗下载的歌曲不是...
华为下载未安装的文件去哪找(华... 今天百科达人给各位分享华为下载未安装的文件去哪找的知识,其中也会对华为下载未安装的文件去哪找到进行解...
怎么往应用助手里添加应用(应用... 今天百科达人给各位分享怎么往应用助手里添加应用的知识,其中也会对应用助手怎么添加微信进行解释,如果能...
家里可以做假山养金鱼吗(假山能... 今天百科达人给各位分享家里可以做假山养金鱼吗的知识,其中也会对假山能放鱼缸里吗进行解释,如果能碰巧解...
一帆风顺二龙腾飞三阳开泰祝福语... 本篇文章极速百科给大家谈谈一帆风顺二龙腾飞三阳开泰祝福语,以及一帆风顺二龙腾飞三阳开泰祝福语结婚对应...
美团联名卡审核成功待激活(美团... 今天百科达人给各位分享美团联名卡审核成功待激活的知识,其中也会对美团联名卡审核未通过进行解释,如果能...
四分五裂是什么生肖什么动物(四... 本篇文章极速百科小编给大家谈谈四分五裂是什么生肖什么动物,以及四分五裂打一生肖是什么对应的知识点,希...