Spring事务

Spring事务,第1张

Spring事务

1.导入依赖

    
        
            mysql
            mysql-connector-java
            5.1.47
        
        
            com.alibaba
            druid
            1.0.15
        
        
            org.springframework
            spring-jdbc
            5.0.8.RELEASE
        
        
            org.springframework
            spring-tx
            5.0.8.RELEASE
        
        
            org.springframework
            spring-context
            5.0.8.RELEASE
        
        
            junit
            junit
            4.12
            compile
        
    

2.配置XML文件



    
    
    
    
    
    
        
        
        
        
    
    
    
        
    
    
    
        
    
    
    

3.声明事务

@Service
//对类内所有的方法都开启事务
@Transactional
public class AccountService {
    @Autowired
    private AccountDao accountDao;
    public void executeMoney(){
        accountDao.subMoney("1",500);
        int a = 1 / 0;
        accountDao.addMoney("2",500);
    }
}

 

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5660269.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存