hibernate saveOrUpdate()方法執行數據庫操作不成功


saveOrUpdate()方法執行數據庫操作不成功:這個問題是你的hibernate.xml文件中的事物配置不正確。導致更新的數據是瞬時狀態,沒有與Session關聯。

具體的配置如下:

  

<!-- 配置事務管理器 -->
<bean id="transactionManager"
class="org.springframework.orm.hibernate4.HibernateTransactionManager">
<property name="sessionFactory" ref="sessionFactory"></property>
<property name="globalRollbackOnParticipationFailure" value="false" />
</bean>
<!-- 配置事務增強處理Bean,指定事務管理器 -->
<tx:advice id="transactionAdvice" transaction-manager="transactionManager">
<!-- 配置詳細事務處理語義 -->
<tx:attributes>
<tx:method name="add*" propagation="REQUIRED" />
<tx:method name="update*" propagation="REQUIRED" />
<tx:method name="delete*" propagation="REQUIRED" />
<tx:method name="save*" propagation="REQUIRED" />

<tx:method name="get*" propagation="SUPPORTS" read-only="true" />
<tx:method name="find*" propagation="SUPPORTS" read-only="true" />
<tx:method name="select*" propagation="SUPPORTS" read-only="true" />
<tx:method name="load*" propagation="SUPPORTS" read-only="true" />
<!-- 其他采用默認事務方式 -->
<tx:method name="*"/>
</tx:attributes>
</tx:advice>

<!-- Spring aop事務管理 -->
<aop:config>
<!-- 配置切入點 -->
<aop:pointcut id="transactionPointcut"
expression="execution(* com.xxx.service..*Impl.*(..))" />
<!-- 指定在txAdvice切入點應用txAdvice事務增強處理 -->
<aop:advisor pointcut-ref="transactionPointcut"
advice-ref="transactionAdvice" />
</aop:config>


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM