码迷,mamicode.com
首页 > 编程语言 > 详细

Spring boot 入门五:springboot 开启声明式事务

时间:2018-04-24 11:17:20      阅读:287      评论:0      收藏:0      [点我收藏+]

标签:事物   方法   需要   mysq   mon   AC   epo   用户   bsp   


springboot开启事务很简单,只需要一个注解@Transactional 就可以了。因为在springboot中已经默认对jpa、jdbc、mybatis开启了事务。这里以spring整合mybatis为例讲解声明式事务

数据源配置

这里的配置都基于前几讲的配置,之前spring整合mybatis 是基于注解实现CRUD操作,这次基于xml的配置文件。
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
spring.datasource.url=jdbc:mysql://localhost:3306/springboot
spring.datasource.username=root
spring.datasource.password=123456
batis.mapper-locations=classpath*:mybatis/*Mapper.xml
mybatis.type-aliases-package=org.pangu.springbootdemomy

通过配置mybatis.mapper-locations来指明mapper的xml文件存放位置,我是放在resources/mybatis文件下的。mybatis.type-aliases-package来指明和数据库映射的实体的所在包。

DAO层配置

@Repository
@Mapper
public interface IAccountMapperdAO {
int update(@Param("money") double money,@Param("id") int id);
}

service 层

@Service
public class AccountMapServiceImpl {
@Autowired
private IAccountMapperdAO accountMapperdAO;

@Transactional(rollbackFor = Exception.class)
public void transfer() {
accountMapperdAO.update(190, 1);
int i = 100 / 0;
accountMapperdAO.update(110, 2);
}
}
@Transactional,声明事务,并设计一个转账方法,用户1减10块,用户2加10块。在用户1减10 ,之后,抛出异常,即用户2加10块钱不能执行,当加注解@Transactional之后,两个人的钱都没有增减。当不加@Transactional,用户1减了10,用户2没有增加,即没有操作用户2 的数据。可见@Transactional注解开启了事物。

 

 

Spring boot 入门五:springboot 开启声明式事务

标签:事物   方法   需要   mysq   mon   AC   epo   用户   bsp   

原文地址:https://www.cnblogs.com/bape/p/8918802.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!