新建类时Hibernate事务开启失败,但其它的没事。
Posted 坚守信念
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了新建类时Hibernate事务开启失败,但其它的没事。相关的知识,希望对你有一定的参考价值。
给大家提供一个思路。
检查下自己的包是不是多创建了一层。
比如说在建立 server.c.impl正常使用
但server.c.d.impl就不行了。
容易被忽视的一点,可以排查一下。
<aop:config expose-proxy="true"> <aop:pointcut id="txPointcut" expression="execution(public * com.a.b.service.*.*.*(..))"/> <aop:advisor pointcut-ref="txPointcut" advice-ref="txAdvice"/> </aop:config>
以上是关于新建类时Hibernate事务开启失败,但其它的没事。的主要内容,如果未能解决你的问题,请参考以下文章
无法提交 Hibernate 事务;嵌套异常是 org.hibernate.Transaction 异常:JDBC 提交失败
ssh整合,从hibernate那个版本开始需要open session in view 才能开启事务?
mybatis为何不像hibernate一样有 Transaction.begin() 只有commit 和rollback