spring事务注解配置

目前常用的spring事务配置就是两种,使用tx命名空间和使用注解配置。
在使用注解配置的时候,你只需要在spring的上下文配置下加入两行代码:
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
	<property name="dataSource" ref="dataSource" />
</bean>

<tx:annotation-driven transaction-manager="transactionManager">

OK,配置完成,接下去你只在需要事务的方法或类上定义事务即可。
<tx:annotation-driven>这项配置告诉spring去检查容器中所有不管在类层面还是方法层面配置了注解@Transactional的bean,找到后<tx:annotation-driven>会为它们执行事务,当然事务的参数定义交给了注解@Transactional。如你可以在class上定义:
@Transactional(propagation=Propagation.SUPPORTS, readOnly=Trye)
public class OrderService implements IOrderService{
}

你可能感兴趣的:(spring事务)