Spring 提供了事务控制的PlatformTransactionManager
<?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"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
https://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/tx
https://www.springframework.org/schema/tx/spring-tx.xsd
http://www.springframework.org/schema/aop
https://www.springframework.org/schema/aop/spring-aop.xsd">
<bean id="jdbcTemple" class="org.springframework.jdbc.core.JdbcTemplate">
<property name="dataSource" ref="dataSource"></property>
</bean>
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName" value="com.mysql.cj.jdbc.Driver"></property>
<property name="url" value="jdbc:mysql:///db1"/>
<property name="username" value="root"/>
<property name="password" value="zheng"/>
</bean>
<!-- 配置事务管理器-->
<bean id = "transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource"/>
</bean>
<!-- 配置事务的通知-->
<tx:advice id="txAdvice" transaction-manager="transactionManager">
<!-- 配置事务的属性
isolation="" 指定事务的隔离级别默认 default表示使用数据库的隔离级别
propagation="" 指事务的传播级别,默认值是REQUIRED,保证一定有事务,CRUD的选择。查询方法可以选择SUPPORTS.
read-only:用于指定事务是否可读只有查询方法才能设置为true只读,默认值是false,表示读写。
timeout:指定事务的超时时间
rollback-for:用于指定一个异常,如果指定一个异常时,事务回滚,如果产生其他异常时事务不回滚。默认值:表示任何异常都回滚。
no-rollback-for:用于指定一个异常,产生该异常时不回滚,产生其他异常时回滚。-->
<tx:attributes>
<tx:method name="find*" propagation="SUPPORTS" read-only="true" />
</tx:attributes>
</tx:advice>
<!-- 配置AOP中的通用切入点表达式 -->
<aop:config>
<aop:pointcut id="pt1" expression="execution(* com..*.*(..))"/>
<!-- 建立通知与切入点表达式的对应关系-->
<aop:advisor advice-ref="txAdvice" pointcut-ref="pt1"/>
</aop:config>
</beans>
基于注解的事务控制
<!-- 1 配置事务管理器-->
<bean id = "transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource"/>
</bean>
<!-- 2 开启spring注解事务的支持-->
<tx:annotation-driven transaction-manager="transactionManager"/>
<!-- 3,在需要事务支持的地方使用@Transactional注解-->
编程式事务控制
<bean id="transactionTemple" class="org.springframework.transaction.support.TransactionTemplate">
<property name="transactionManager" ref="transactionManager"/>
</bean>
网友评论