spring框架,配置文件里怎么配置事务的传播行为和隔离级别
发布网友
发布时间:2022-04-24 15:16
我来回答
共2个回答
热心网友
时间:2022-04-10 16:01
spring框架提供五种隔离级别分别为
isolation_default
isolation_read_uncommitted
isolation_read_committed
isolation_repeatable_read
isolation_serializable
后四种隔离级别具体隔离何种数据读取
这个默认隔离级别是与具体的数据库相关的
采取的是具体数据库的默认隔离级别
不同的数据库是不一样的
热心网友
时间:2022-04-10 17:19
<bean id="txManager"
class="org.springframework.orm.hibernate3.HibernateTransactionManager">
<property name="sessionFactory" ref="sessionFactory" />
</bean>
<aop:config>
<aop:pointcut id="bussinessService"
expression="execution(public * com.service..*.*(..))" />
<aop:advisor pointcut-ref="bussinessService"
advice-ref="txAdvice" />
</aop:config>
<tx:advice id="txAdvice" transaction-manager="txManager">
<tx:attributes>
<tx:method name="getUser" read-only="true" />
<tx:method name="*" propagation="REQUIRED"/><!--所有的方法都有传播特性-->
</tx:attributes>
</tx:advice>