本文主要是介绍[hibernate]Turn your Session into FlushMode.COMMIT/AUTO,请教这种配置怎么处理,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1.可能是你的切面没有切到指定包下面的事务方法
<aop:config> <!-- 以Service结尾的beanexpression="bean(*Service)" --><aop:pointcut expression="**execution(* com.sjq.*.*.service.*.*(..))**" id="txPointcut"/> <aop:advisor advice-ref="txAdvice" pointcut-ref="txPointcut"/> </aop:config>
这篇关于[hibernate]Turn your Session into FlushMode.COMMIT/AUTO,请教这种配置怎么处理的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!