在Spring 中使用Transaction (事务),在很多时候当一个动作需要修改多个相互有联系表中的数据,如果其中一条数据修改失败,要对已经修改的数据进行回滚操作,这时就要使用Transaction 进行回滚。
Spring 内置事务管理器
Spring提供了许多内置事务管理器实现:
Class | 描述 |
---|---|
DataSourceTransactionManager | 位于org.springframework.jdbc.datasource 包中,数据源事务管理器,提供对单个javax.sql.DataSource事务管理,用于Spring JDBC抽象框架、iBATIS或MyBatis框架的事务管理 |
JdoTransactionManager | 位于org.springframework.orm.jdo 包中,提供对单个javax.jdo.PersistenceManagerFactory事务管理,用于集成JDO框架时的事务管理 |
JpaTransactionManager | 位于org.springframework.orm.jpa 包中,提供对单个javax.persistence.EntityManagerFactory事务支持,用于集成JPA实现框架时的事务管理 |
HibernateTransactionManager | 位于org.springframework.orm.hibernate3 包中,提供对单个org.hibernate.SessionFactory事务支持,用于集成Hibernate框架时的事务管理;该事务管理器只支持Hibernate3+版本,且Spring3.0+版本只支持Hibernate 3.2+版本 |
JtaTransactionManager | 位于org.springframework.transaction.jta 包中,提供对分布式事务管理的支持,并将事务管理委托给Java EE应用服务器事务管理器 |
OC4JjtaTransactionManager | 位于org.springframework.transaction.jta 包中,Spring提供的对OC4J10.1.3+应用服务器事务管理器的适配器,此适配器用于对应用服务器提供的高级事务的支持 |
WebSphereUowTransactionManager | 位于org.springframework.transaction.jta 包中,Spring提供的对WebSphere 6.0+应用服务器事务管理器的适配器,此适配器用于对应用服务器提供的高级事务的支持 |
WebLogicJtaTransactionManager | 位于org.springframework.transaction.jta 包中,Spring提供的对WebLogic 8.1+应用服务器事务管理器的适配器,此适配器用于对应用服务器提供的高级事务的支持 |
在Spring 中使用Transaction
引入jar
在项目中要引入 spring-tx-4.2.4.RELEASE.jar
在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: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/context
http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop.xsd">
</beans>
这里基本整理了前面提到的所有约束配置。
在XML 中配置事务
以下内容都是基于JDBC
- 配置事务管理器
<bean id="cPDataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
<property name="driverClass" value="com.mysql.jdbc.Driver" />
<property name="jdbcUrl" value="jdbc:mysql://127.0.0.1:3306/spring_db?useUnicode=true&characterEncoding=UTF-8" />
<property name="user" value="root" />
<property name="password" value="root" />
</bean>
<!-- 配置事务管理器 -->
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<!-- 注入DataSource -->
<property name="dataSource" ref="cPDataSource"></property>
</bean>
- 配置事务的增强
<tx:advice id="txadvice" transaction-manager="transactionManager">
<!-- 事务操作 -->
<tx:attributes>
<!--
配置匹配规则
1. 直接设置方法名
2. x+* 所有以x开头的方法都执行事务
-->
<tx:method name="update*" propagation="REQUIRED"/>
</tx:attributes>
</tx:advice>
说明: propagation="REQUIRED"
是设置隔离级别
- 配置切面
<aop:config>
<!-- 切入点 -->
<aop:pointcut expression="execution(* com.cfox.spring.UserService.*(..))" id="userServiceCut"/>
<!-- 切面 -->
<aop:advisor advice-ref="txadvice" pointcut-ref="userServiceCut"/>
</aop:config>
注意<aop:advisor advice-ref="txadvice" pointcut-ref="userServiceCut"/>
这一句,advice-ref
是设置的增强,pointcut-ref
是设置切入点
在Spring 中使用事务基本配置就这些。
下面是一个完整的例子的代码
在Spring 中使用c3p0 和 JdbcTemplate
<?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: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/context
http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop.xsd">
<bean id="cPDataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
<property name="driverClass" value="com.mysql.jdbc.Driver" />
<property name="jdbcUrl" value="jdbc:mysql://127.0.0.1:3306/spring_db?useUnicode=true&characterEncoding=UTF-8" />
<property name="user" value="root" />
<property name="password" value="root" />
</bean>
<!-- 1.配置事务管理器 -->
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<!-- 注入DataSource -->
<property name="dataSource" ref="cPDataSource"></property>
</bean>
<!-- 2.配置事务的增强 -->
<tx:advice id="txadvice" transaction-manager="transactionManager">
<!-- 事务操作 -->
<tx:attributes>
<!--
配置匹配规则
1. 直接设置方法名
2. x+* 所有以x开头的方法都执行事务
-->
<tx:method name="update*" propagation="REQUIRED"/>
</tx:attributes>
</tx:advice>
<!-- 3. 配置切面 -->
<aop:config>
<!-- 切入点 -->
<aop:pointcut expression="execution(* com.cfox.spring.UserService.*(..))" id="userServiceCut"/>
<!-- 切面 -->
<aop:advisor advice-ref="txadvice" pointcut-ref="userServiceCut"/>
</aop:config>
<bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate">
<property name="dataSource" ref="cPDataSource" />
</bean>
<bean id="userService" class="com.cfox.spring.UserService">
<property name="userDao" ref="userDao"/>
</bean>
<bean id="userDao" class="com.cfox.spring.UserDao">
<property name="jdbcTemplate" ref="jdbcTemplate"></property>
</bean>
</beans>
两个bean 实现:
public class UserDao {
private JdbcTemplate jdbcTemplate;
public void setJdbcTemplate(JdbcTemplate jdbcTemplate) {
this.jdbcTemplate = jdbcTemplate;
}
public void updateMoney(String name, int money) {
String sql = "UPDATE user_acc SET salary=salary+? WHERE user_name=?";
int row = jdbcTemplate.update(sql, money, name);
System.out.println(row);
}
}
public class UserService {
private UserDao userDao;
public void setUserDao(UserDao userDao) {
this.userDao = userDao;
}
public void updateUserMoney() {
userDao.updateMoney("王五", 1000);
int a = 10 / 0; // 使抛出异常,让事务执行回滚
userDao.updateMoney("李四", -1000);
}
}
网友评论