accountMoney7、transMethod7都有事務(wù),會(huì)回滾嗎
@Transactional(propagation?=?Propagation.REQUIRED) public?void?accountMoney7()?{ ????ordersDao.lessMoney(); ????transMethod7(); ????int?x?=?1?/?0; } @Transactional(propagation?=?Propagation.REQUIRES_NEW) public?void?transMethod7()?{ ????ordersDao.moreMoney(); }
2021-03-31
因?yàn)閍ccountMoney7? 已經(jīng)開啟事務(wù),并且propagation?=?Propagation.REQUIRED, 按照事務(wù)的傳播機(jī)制,執(zhí)行?
transMethod7? 不會(huì)再開啟新的事務(wù),所以發(fā)生異常時(shí)? 還是會(huì)回滾