springboot中的controller层增加事务控制

springboot中的controller层增加事务控制,第1张

springboot中的controller层增加事务控制

大多数编程者习惯会在service层加事务控制,当一个controller层调用了多个service的update或者insert方法时,第一个成功了,第二个失败了。那么就会有第一个的事务会回退吗的困惑。其实通过在方法上@Transactional注解就可以控制。但在controller中不要使用try catch被捕捉了就不会回退事务。反正自己动手试试就知道。 但面向很多业务时还是建议放在service再做层封装

controller

  //可行 
 @PostMapping("/updateCustTel")
    @Transactional
    public BctResponse updateCustTel(@RequestBody BctRequest reqBctRequest) throws Exception{
        log.info("UpdatePersonInfoController.updateCustTel-------->start");
        boolean flag = userInfoService.updateBySelective(userInfo);//success
        userInfoService.insert(new UserInfo()); //fail
        log.info("UpdatePersonInfoController.updateCustTel-------->end");
        return BctResponse.success();
}

//不可行
 @PostMapping("/updateCustTel")
    @Transactional
    public BctResponse updateCustTel(@RequestBody BctRequest reqBctRequest) throws Exception{
        log.info("UpdatePersonInfoController.updateCustTel-------->start");
try{
        boolean flag = userInfoService.updateBySelective(userInfo);//success
        userInfoService.insert(new UserInfo()); //fail
        log.info("UpdatePersonInfoController.updateCustTel-------->end");
}catch(Execption e){
e.getMessage()
}
        return BctResponse.success();
}

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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存