1,不同的数据库底层技术,使用的TransactionManager不一样
这个例子是针对 JdbcTeampelate的,Mybatis和纯jdbc也能用,关键点就是定义TransactionManger的地方不一样。
备注:Spring事务的底层实现是基于AOP的,如果要更好的了解事务,可以先学习Spring AOP
下面是依赖的包
2, 把数据库连接信息写进配置文件
jdbc.url=jdbc:mysql://localhost:3306/mydb?useUnicode=true&characterEncoding=UTF-8
jdbc.driver=com.mysql.cj.jdbc.Driver
jdbc.username=root
jdbc.password=xxxxxx
3, 添加spring配置类
package com.cd.ssm.config;
import com.alibaba.druid.pool.DruidDataSource;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org