xml配置例如以下:
<!-- 属性文件读入 -->
<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations">
<list>
<value>classpath*:config/jdbc.properties</value>
</list>
</property>
</bean>
<!-- 支持 @Transactional 标记 -->
<tx:annotation-driven/>
<!-- 支持 @AspectJ 标记-->
<aop:aspectj-autoproxy/>
<!-- 以AspectJ方式 定义 AOP -->
<aop:config proxy-target-class="true">
<aop:advisor pointcut="execution(* org.springside.core.dao.*Dao.*(..))" advice-ref="txAdvice"/>
</aop:config>
<!-- 基本事务定义,使用transactionManager作事务管理,默认get*方法的事务为readonly,其余方法按默认设置.
默认的设置请參考Spring文档事务一章. -->
<tx:advice id="txAdvice" >
<tx:attributes>
<tx:method name="query*" read-only="true" propagation="NOT_SUPPORTED"/>
<tx:method name="get*" read-only="true" propagation="NOT_SUPPORTED"/>
<tx:method name="save*" read-only="true" propagation="REQUIRED"/>
</tx:attributes>
</tx:advice>
有时我们发现save方法插入数据库出现异常时并不会回滚。由于aop默认仅仅捕获RunTimeException,假设要捕获异常并回滚。能够加上属性
rollback-for:"java.lang.Exception"
其它相关属性例如以下
属性 是否须要? 默认值 描写叙述
name | 是 | 与事务属性关联的方法名。通配符(*)能够用来指定一批关联到同样的事务属性的方法。 如: | |
propagation | 不 | REQUIRED | 事务传播行为 |
isolation | 不 | DEFAULT | 事务隔离级别 |
timeout | 不 | -1 | 事务超时的时间(以秒为单位) |
read-only | 不 | false | 事务是否仅仅读? |
rollback-for | 不 | 将被触发进行回滚的 | |
no-rollback-for | 不 | 不 被触发进行回滚的 |