1、spring事务的配置:
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.2.xsd">
<bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager">
<property name="entityManagerFactory" ref="entityManagerFactory"/>
</bean>
<tx:annotation-driven transaction-manager="transactionManager" proxy-target-class="true" />
2、使用:在类名或者方法名上加上注解@Transactional
方法的注解会覆盖类的,如果在类上加了,但是某一个方法不需要事务,可以在该方法上加@Transactional(propagation=Propagation.NOT_SUPPORTED,readOnly=true)
3、@Transactional注解有这么几个变量:propagation,isolation,timeout,readOnly,rollbackFor,rollbackForClassName,noRollbackFor,noRollbackForClassName。
主要是propagation(事务的传播级别)和isolation(事务的隔离级别)
4、propagation有这么几种:REQUIRED, SUPPORTS, MANDATORY, REQUIRES_NEW, NOT_SUPPORTED, NEVER, NESTED;默认是required.
5、isolation有这么几种:DEFAULT, READ_UNCOMMITTED, READ_COMMITTED, REPEATABLE_READ, SERIALIZABLE。
安全级别渐渐增高,其中default是数据库默认的级别,和数据库有关。大多数的数据库是READ_COMMITTED,比如Sql Server ,oracle。mysql是REPEATABLE_READ。
(1)READ_UNCOMMITTED容易出现脏读
(2)READ_COMMITTED容易出现不可重复读
(3)REPEATABLE_READ容易出现幻读