下面这段代码有什么问题吗?
为什么无法自动开启事务并提交?
spring想管理hibernate的事务,也就是通过这几行代码就可以了吧?
通过spring管理事务,执行后没有任何的效果,我觉得应该是事务没有提交的事
不过是否开启也不确定,如何能排查出问题原因呢?
<!-- spring接管事务 -->
<bean id="transactionManager" class="org.springframework.orm.hibernate5.HibernateTransactionManager">
<property name="sessionFactory" ref="sessionFactory"></property>
</bean>
<!-- 事务增强 -->
<tx:advice id="txAdvice" transaction-manager="transactionManager">
<tx:attributes>
<tx:method name="*"/>
</tx:attributes>
</tx:advice>
<!-- 使用aop自动开启/提交事务 -->
<aop:config>
<aop:pointcut expression="execution(* com.web.service.*.*(..))" id="serviceMethod"/>
<aop:advisor advice-ref="txAdvice" pointcut-ref="serviceMethod"/>
</aop:config>