Spring_事务
事务管理:
用来确保数据的完整性和一致性
事务就是一系列的动作,它们被当做一个单独的工作单元.这些动作要么全部完成,要么全部不起作用
事务的四个关键属性
原子性
一致性
隔离性
持久性
Spring两种
编程式事务管理:将事务管理代码嵌入到业务方法中来控制事务的提交和回滚
声明式事务管理:将事务管理代码从业务方法中分离出来,以声明的方式来实现业务管理,Spring通过SpringAop框架支持声明式事务管理
Spring中的事务管理器
<!-- 配置事务管理器 -->
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource"></property>
</bean>
<!-- 启用事务注解 -->
<tx:annotation-driven transaction-manager="transactionManager"/>
方法上添加事务注解
@Transactional @Override public void purchase(String username, String isbn) { //获取书的单价 int price=bookShopDao.findBookPriceByIsbn(isbn); //更新书的库存 bookShopDao.updateStock(isbn); //更新用户的余额 bookShopDao.updateUserAccount(username, price); }
事务的传播属性
@Transactional @Override public void checkout(String username, List<String> isbns) { for (String isbn : isbns) { bookShopService.purchase(username, isbn); } } //propagation指定事务的传播行为,即当前事务方法被另一个事务方法调用时 //如何使用事务,即REQUIRED是默认的 即使用调用方法事务
@Transactional(propagation=Propagation.REQUIRED,
isolation=Isolation.READ_COMMITTED,readOnly=false,
timeout=3)
@Override public void purchase(String username, String isbn) { //获取书的单价 int price=bookShopDao.findBookPriceByIsbn(isbn); //更新书的库存 bookShopDao.updateStock(isbn); //更新用户的余额 bookShopDao.updateUserAccount(username, price); }
并发事务导致的问题
//1.propagation指定事务的传播行为,即当前事务方法被另一个事务方法调用时
//如何使用事务,即REQUIRED是默认的 即使用调用方法事务
//REQUIRED_NEW:使用自己的事务,调用的事务方法的事务被挂起
//2.使用Isolation 指定事务的隔离级别,最常用的取值为READ_COMMITTED 读取提交
//3.默认情况下Spring的声明式事务对所有的运行时异常进行回滚,也可以通过对应的属性进行设置
//.通常情况下取默认值即可noRollbackFor= {UserAccountExecption.class}
//4.使用readOnly 指定事务是否为只读 表示这个事务只读取数据但不更新数据, 这样可以帮助数据库引擎优化事务
//若真的是一个只读取数据库的方法,应设置readOnly=true
//5.使用timeout 指定强制回滚之前的事务占用的时间
@Transactional(propagation=Propagation.REQUIRED, isolation=Isolation.READ_COMMITTED,readOnly=false, timeout=3)
基于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:context="http://www.springframework.org/schema/context" xmlns:tx="http://www.springframework.org/schema/tx" xmlns:aop="http://www.springframework.org/schema/aop" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd"> <!-- 导入资源文件 --> <context:property-placeholder location="classpath:db.properties"></context:property-placeholder> <!-- 配置自动扫描的包 --> <context:component-scan base-package="com.tanlei.tx"></context:component-scan> <!-- 配置C3p0数据源 --> <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource"> <property name="user" value="${jdbc.user}"></property> <property name="password" value="${jdbc.password}"></property> <property name="jdbcUrl" value="${jdbc.jdbcUrl}"></property> <property name="driverClass" value="${jdbc.driverClass}"></property> <property name="initialPoolSize" value="${jdbc.initPoolSize}"></property> <property name="maxPoolSize" value="${jdbc.maxPoolSize}"></property> </bean> <!-- 配置Spring的jdbcTemplate --> <bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate"> <property name="dataSource" ref="dataSource"></property> </bean> <!-- 配置Bean --> <bean id="bookShopDao" class="com.tanlei.tx.xml.BookShopDaoImpl"> <property name="jdbcTemplate" ref="jdbcTemplate"></property> </bean> <bean id="bookShopService" class="com.tanlei.tx.xml.BookShopServiceImpl"> <property name="bookShopDao" ref="bookShopDao"></property> </bean> <bean id="cashier" class="com.tanlei.tx.xml.CashierImpl"> <property name="bookShopService" ref="bookShopService"></property> </bean> <!-- 配置事务管理器 --> <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager"> <property name="dataSource" ref="dataSource"></property> </bean> <!-- 配置事务属性 --> <tx:advice id="txAdvice" transaction-manager="transactionManager"> <tx:attributes> <tx:method name="*"/> </tx:attributes> </tx:advice> <!-- 配置事务切入点 ,以及把事务切入点和事务属性关联起来 --> <aop:config> <aop:pointcut expression="execution(* com.tanlei.tx.xml.BookShopService.*(..))" id="txPointCut"/> <aop:advisor advice-ref="txAdvice" pointcut-ref="txPointCut"/> </aop:config> </beans>