Spring AOP 管理事务
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring AOP 管理事务相关的知识,希望对你有一定的参考价值。
<aop:config proxy-target-class="true"> <aop:pointcut expression="execution(* com.jikexueyuan.dao.impl.*.*(..))" id="cut"/> <aop:advisor advice-ref="defaultTransactionAdvice" pointcut-ref="cut"/> </aop:config> <bean id="transactionManager" class="org.springframework.orm.hibernate4.HibernateTransactionManager"> <property name="sessionFactory" ref="sessionFactory" /> <property name="dataSource" ref="datasource"></property> </bean> <tx:advice transaction-manager="transactionManager" id="defaultTransactionAdvice"> <tx:attributes> <tx:method name="add*" read-only="false"/> <tx:method name="*"/> </tx:attributes> </tx:advice>
以上是关于Spring AOP 管理事务的主要内容,如果未能解决你的问题,请参考以下文章
spring事务管理,xml配置aop事务和注解配置aop事务