spring3+mybatis事务不回滚
public void createMemberAccount(TbMemberAccount account, TbRegisterActive active) { this.accountMapper.insertMemberAccount(account); memberId = account.getMemberId().longValue(); active.setMemberId(memberId.intValue()); active.setEmailAddress(null); this.activeMapper.insertRegisterActive(active);}