關於spring hibernate的事務管理
期望結果
進service包的類事務開始,出service事務結束,如果在進行中丟擲任何BusinessException,所有修改的資料回滾
<bean id="transactionManager"
class="${hibernate.transactionManager}">
<property name="sessionFactory" ref="sessionFactory" />
<property name="dataSource" ref="dataSource" />
</bean>
<!-- <tx:annotation-driven proxy-target-class="true" transaction-manager="ling2.jdbcTransactionManager" /> -->
<aop:config proxy-target-class="true">
<aop:advisor advice-ref="txAdvice" pointcut="execution(* com.ling2..*.service..*.*(..))"/>
<aop:advisor advice-ref="txAdvice" pointcut="execution(* com.ling2..*.context..*.*(..))"/>
<aop:advisor advice-ref="txAdvice" pointcut="execution(* com.deloitte..*.service..*.*(..))"/>
<aop:advisor advice-ref="txAdvice" pointcut="execution(* com.deloitte..*.context..*.*(..))"/>
<aop:advisor advice-ref="txAdvice" pointcut="execution(* velox.service..*.*(..))"/>
</aop:config>
<tx:advice id="txAdvice" transaction-manager="transactionManager">
<tx:attributes>
<tx:method name="recycle*" propagation="REQUIRED" rollback-for="BusinessException" />
........
<!-- workflow end -->
<tx:method name="init*" read-only="true" />
<tx:method name="current*" read-only="true" />
<tx:method name="*" read-only="true" />
</tx:attributes>
</tx:advice>
但有些情況卻不會回滾,測試如下,有個欄位20長度,list中資料後面幾條長度超過會報錯
測試程式碼在service層用包裹
try {
} catch (Exception e) {
throw new BusinessException("儲存失敗:"+e.getMessage());
}
直接在一個service中呼叫另外的service,如果單體儲存資料會被立即提交,不能回滾,除錯看過Session的id,Session是一個id
for(RowAndProperty rowAndProperty:rowAndProperties)
{
.......
shoppingService.save(detail);
.....
}
如果批量儲存,資料能回滾
for(RowAndProperty rowAndProperty:rowAndProperties)
{
.......
allDetails.add(detail);
.....
}
shoppingService.saveAll(allDetails);
以上情況,有人說一個insert就是一個事物,一個失敗了就回滾一個
如果用dao層單體儲存資料,資料居然不能儲存,效果和read-only的事務一樣,為什麼,暫時不知道
這個很奇怪,我其他模組的資料儲存都是這樣的,也能儲存資料,這裡就不行,奇怪
for(RowAndProperty rowAndProperty:rowAndProperties)
{
.......
shoppingDao.save(detail);
.....
}