Java事务的处理
Posted Java 学习
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java事务的处理相关的知识,希望对你有一定的参考价值。
@Transactional(propagation = Propagation.REQUIRED,rollbackFor = RuntimeException.class)
基本配置
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.springframework.org/schema/beans" 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/tx http://www.springframework.org/schema/tx/spring-tx.xsd"> <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager"> <property name="dataSource" ref="dataSource" /> </bean> <bean id="transactionTemplate" class="org.springframework.transaction.support.TransactionTemplate"> <property name="transactionManager" ref="transactionManager" /> </bean> <tx:annotation-driven transaction-manager="transactionManager" /> </beans>
以上是关于Java事务的处理的主要内容,如果未能解决你的问题,请参考以下文章