-
1、配置事务管理器
-
2、开启spring对注解事务的支持
-
3、在需要事务支持的地方使用@Transactional注解
配置bean.xml文件
<?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:aop=“http://www.springframework.org/schema/aop”
xmlns:tx=“http://www.springframework.org/schema/tx”
xmlns:context=“http://www.springframework.org/schema/context”
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/cache
http://www.springframework.org/schema/cache/spring-cache.xsd">
<context:component-scan base-package=“com.ly”></context:component-scan>
<tx:annotation-driven transaction-manager=“transactionManager”></tx:annotation-driven>
要想进行事务控制,我们应该在在业务层去实现,接下来配置账户的业务层
/**
-
@Author: Ly
-
@Date: 2020-08-05 18:57
-
账户的业务层接口
*/
public interface IAccountService {
/**
-
转账
-
@param sourceName 转成账户名称
-
@param targetName 转入账户名称
-
@param money 转账金额
*/
void transfer(String sourceName, String targetName, Float money);
}
/**
-
@Author: Ly
-
@Date: 2020-08-05 19:00
-
账户的业务层实现类
*/
@Service(“accountService”)
@Transactional(propagation = Propagation.SUPPORTS,readOnly = true)//只读型事务配置
public class AccountServiceImpl implements IAccountService {
@Autowired
private IAccountDao accountDao;
//读写型事务配置
@Transactional(propagation = Propagation.SUPPORTS,readOnly = false)
public void transfer(String sourceName, String targetName, Float money) {
System.out.println(“transfer”);
//2.1.根据名称查询转出账户
Account source=accountDao.findAccountByName(sourceName);
//2.2.根据名称查询转入账户
Account target=accountDao.findAccountByName(targetName);
//2.3.转出账户减钱
source.setMoney(source.getMoney()-money);
//int i=1/0;
//2.4.转给账户加钱
target.setMoney(target.getMoney()+money);
//2.5.更新装出账户
accountDao.updateAccount(source);
//2.6.更新转入账户
accountDao.updateAccount(target);
}
}
配置账户的持久层:
/**
-
@Author: Ly
-
@Date: 2020-08-05 12:17
*/
public interface IAccountDao {
/**
-
根据名称查询账户
-
@param accountName
-
@return
*/
Account findAccountByName(String accountName);
/**
-
更新账户
-
@param account
*/
void updateAccount(Account account);
}
/**
-
@Author: Ly
-
@Date: 2020-08-05 12:20
*/
@Repository(“accountDao”)
public class AccountDaoImpl implements IAccountDao {
@Autowired
private JdbcTemplate jdbcTemplate;
public void setJdbcTemplate(JdbcTemplate jdbcTemplate) {
this.jdbcTemplate = jdbcTemplate;
}
public Account findAccountByName(String accountName) {
List accounts =jdbcTemplate.query(“select * from account where name= ?”,new BeanPropertyRowMapper(Account.class),accountName);
if(accounts.isEmpty()){
return null;
}
if(accounts.size()>1){
throw new RuntimeException(“结果集不唯一”);
}
return accounts.get(0);
}
public void updateAccount(Account account) {
jdbcTemplate.update(“update account set name=?,money=? where id=?”,account.getName(),account.getMoney(),account.getId());
}
}
测试代码:
/**
-
@Author: Ly
-
@Date: 2020-07-27 17:17
*/
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = “classpath:bean.xml”)
public class AccountServiceTest {
@Autowired
private IAccountService as;
@Test
public void testTransfer(){
as.transfer(“aaa”,“bbb”,100f);
}
}
基于XML的声明式事务控制我们只需要修改bean.xml配置文件即可:
配置步骤:
-
1、配置事务管理器
-
2、配置事务的通知:导入事务的约束,使用tx:advice标签配置事务通知
属性:id:给事务通知起一个唯一标识
transaction-manager:给事务通知提供一个事务管理器引用
-
3、配置AOP中的通用切入点表达式
-
4、建立事务通知和切入点表达式的对应关系
-
5、在tx:advice标签的内部配置事务的属性
配置事务的属性:
isolation:用于指定事务的隔离级别。默认执行default:表示使用数据库的默认隔离级别
propagation:用于指定事务的传播行为。默认值是REQUIRED,表示一定会有事务,增删改的选择。查询方法可以选择SUPPORTS。
read-only:用于指定事务是否只读只有查询方法才能设置为true。默认值为false,表示读写
timeout:用于指定事务的超时时间。默认值为-1,表示永不超时。如果指定了数值,以秒为单位
rollback-for:用于指定一个异常,但产生该异常时,事务回滚。产生其他异常时,事务不回滚。没有默认值,表示任意异常都回滚
<?xml version="1.0" encoding="UTF-8"?>no-rollback-for:用于指定一个异常,但产生该异常时,事务不回滚。产生其他异常时,事务回滚。没有默认值,表示任意异常都回滚
<beans xmlns=“http://www.springframework.org/schema/beans”
xmlns:xsi=“http://www.w3.org/2001/XMLSchema-instance”
xmlns:aop=“http://www.springframework.org/schema/aop”
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/aop
http://www.springframework.org/schema/aop/spring-aop.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx.xsd
http://www.springframework.org/schema/cache
http://www.springframework.org/schema/cache/spring-cache.xsd">
最后
自我介绍一下,小编13年上海交大毕业,曾经在小公司待过,也去过华为、OPPO等大厂,18年进入阿里一直到现在。
深知大多数Java工程师,想要提升技能,往往是自己摸索成长,自己不成体系的自学效果低效漫长且无助。
因此收集整理了一份《2024年Java开发全套学习资料》,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友,同时减轻大家的负担。
既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,基本涵盖了95%以上Java开发知识点,不论你是刚入门Android开发的新手,还是希望在技术上不断提升的资深开发者,这些资料都将为你打开新的学习之门!
如果你觉得这些内容对你有帮助,需要这份全套学习资料的朋友可以戳我获取!!
由于文件比较大,这里只是将部分目录截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频,并且会持续更新!
料》,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友,同时减轻大家的负担。**
[外链图片转存中…(img-vZTmmm9K-1715065056302)]
[外链图片转存中…(img-LbwTm5Ze-1715065056303)]
[外链图片转存中…(img-HI8PzPve-1715065056303)]
既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,基本涵盖了95%以上Java开发知识点,不论你是刚入门Android开发的新手,还是希望在技术上不断提升的资深开发者,这些资料都将为你打开新的学习之门!
如果你觉得这些内容对你有帮助,需要这份全套学习资料的朋友可以戳我获取!!
由于文件比较大,这里只是将部分目录截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频,并且会持续更新!