嵌套事物总结

事物成功总结
1、内外都无try Catch的时候,外部异常,全部回滚。
2、内外都无try Catch的时候,内部异常,全部回滚。
3、外部有try Catch时候,内部异常,全部回滚
4、内部有try Catch,外部异常,全部回滚
5、友情提示:外层方法中调取其他接口,或者另外开启线程的操作,一定放到最后!!!(因为调取接口不能回滚,一定要最后来处理)

总结:由于上面的异常被捕获导致,很多事务回滚失败。如果一定要将捕获,请捕获后又抛出 RuntimeException(默认为异常捕获RuntimeException
正确的嵌套事物实例
controller层
  1. package com.ycy.app;  
  2.   
  3. import org.springframework.beans.factory.annotation.Autowired;  
  4. import org.springframework.boot.SpringApplication;  
  5. import org.springframework.boot.autoconfigure.EnableAutoConfiguration;  
  6. import org.springframework.boot.autoconfigure.SpringBootApplication;  
  7. import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration;  
  8. import org.springframework.context.annotation.ImportResource;  
  9. import org.springframework.web.bind.annotation.RequestMapping;  
  10. import org.springframework.web.bind.annotation.RestController;  
  11.   
  12. /**  
  13.  * Created by ycy on 16/7/19.  
  14.  */  
  15. @RestController  
  16. @SpringBootApplication  
  17. @EnableAutoConfiguration(exclude = {DataSourceAutoConfiguration.class})  
  18. @ImportResource({"classpath:/applicationContext.xml"})  
  19. public class Application {  
  20.   @Autowired  
  21.   private TestBiz testBiz;  
  22.   
  23.   @RequestMapping("/")  
  24.   String home()  {  
  25.     System.out.println("controller 正常执行");  
  26.     try {  
  27.       testBiz.insetTes();  
  28.     } catch (Exception e) {  
  29.       System.out.println("controller 异常日志执行");  
  30.     }  
  31.   
  32.     return " 正常返回Hello World!";  
  33.   }  
  34.   
  35.   public static void main(String[] args) throws Exception {  
  36.     SpringApplication.run(Application.class, args);  
  37.   }  
  38. }  


外层biz层:
  1. package com.ycy.app;  
  2.   
  3. import org.springframework.beans.factory.annotation.Autowired;  
  4. import org.springframework.stereotype.Component;  
  5. import org.springframework.transaction.annotation.Transactional;  
  6.   
  7. import com.ycy.service.TestService;  
  8.   
  9. /**  
  10.  * Created by ycy on 16/7/20.  
  11.  */  
  12. @Component  
  13. public class TestBiz {  
  14.   @Autowired  
  15.   private TestService testService;  
  16.   
  17.   @Transactional  
  18.   public void insetTes() throws Exception {  
  19.     try {  
  20.       for (int j = 0; j < 8; j++) {  
  21.         testService.testInsert(j, j + "姓名");  
  22.         if (j == 3) {  
  23.           int i = 1 / 0;// 此处会产生异常  
  24.         }  
  25.       }  
  26.     } catch (Exception ex) {  
  27.       System.out.println("biz层异常日志处理");  
  28.       throw new RuntimeException(ex);  
  29.     }  
  30.   
  31.     System.out.println("biz层 正常执行");  
  32.   }  
  33. }  

内层service层
  1. package com.ycy.service.impl;  
  2.   
  3. import com.ycy.center.dao.entity.YcyTable;  
  4. import com.ycy.center.dao.mapper.YcyTableMapper;  
  5.   
  6. import org.springframework.beans.factory.annotation.Autowired;  
  7. import org.springframework.stereotype.Service;  
  8. import org.springframework.transaction.annotation.Transactional;  
  9.   
  10. /**  
  11.  * Created by ycy on 16/7/19.  
  12.  */  
  13. @Service  
  14. public class TestServiceImpl implements com.ycy.service.TestService {  
  15.   @Autowired  
  16.   private YcyTableMapper ycyTableMapper;  
  17.   @Transactional  
  18.   public void testInsert(int num, String name) throws Exception {  
  19.     try {  
  20.       YcyTable ycyTable = new YcyTable();  
  21.       ycyTable.setName(name);  
  22.       ycyTable.setNum(num);  
  23.       ycyTableMapper.insert(ycyTable);  
  24.       if (num== 3) {  
  25.         int i = 1 / 0;// 此处会产生异常  
  26.       }  
  27.     } catch (Exception ex) {  
  28.       System.out.println(num + "service异常日志处理");  
  29.         throw new RuntimeException(ex);  
  30.     }  
  31.     System.out.println(num + "service正常执行");  
  32.   }  

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值