@Transactional使用
常规用法
@Transactional(rollbackFor = Exception.class)
注意事项
1、 需要明确指定rollbackFor = Exception.class,否则无法正常回滚事务 2、方法必须为public,否则事务不起作用 3、在使用mybatis-plus的ServiceImpl时,除了saveBatch、saveOrUpdate、saveOrUpdateBatch、updateBatchById外均要增加注解
@Transactional(rollbackFor = Exception.class)
1、 需要明确指定rollbackFor = Exception.class,否则无法正常回滚事务 2、方法必须为public,否则事务不起作用 3、在使用mybatis-plus的ServiceImpl时,除了saveBatch、saveOrUpdate、saveOrUpdateBatch、updateBatchById外均要增加注解
本文链接:https://blog.jnliok.com/post/spring-boot-transactional.html
-- EOF --
作者
jnan77
发表于
2019-12-30 09:40:44
,添加在分类
编程语言
下
,并被添加「
springboot
事务管理
」标签
,最后修改于
2019-12-30 09:48:50
Comments