一、转账业务追加日志分析
实现任意两个账户间转账操作,并对每次转账操作在数据库进行留痕
即:A账户减钱,B账户加钱,数据库记录日志
无论转账操作是否成功,均进行转账操作的日志留痕
二、事务传播行为
事务传播行为:事务协调员对事务管理员所携带事务的处理态度
添加日志是一个新的事务;
事务传播行为:
三、转账日志案例
实现步骤:
第一步、在AccountServiceImpl中调用logService中添加日志的方法, 添加日志是一个新的事务。
@Service public class AccountServiceImpl implements AccountService { @Autowired private AccountDao accountDao; @Autowired private LogService logService; public void transfer(String out,String in ,Double money) { try{ accountDao.outMoney(out,money); int i = 1/0; accountDao.inMoney(in,money); }finally { logService.log(out,in,money); } } }
第二步、在LogService的log()方法上设置事务的传播行为
public interface LogService { //propagation设置事务属性:传播行为设置为当前操作需要新事务 @Transactional(propagation = Propagation.REQUIRES_NEW) void log(String out, String in, Double money); }
第三步、运行测试类,查看结果
@RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration(classes = SpringConfig.class) public class AccountServiceTest { @Autowired private AccountService accountService; @Test public void testTransfer() throws IOException { accountService.transfer("Tom","Jerry",50D); } }
实现成功。