码迷,mamicode.com
首页 > 数据库 > 详细

在Spring Boot中使用数据库事务

时间:2017-07-22 00:07:37      阅读:350      评论:0      收藏:0      [点我收藏+]

标签:name   imp   void   gap   enabled   ide   exce   deploy   存在   

一:在springboot启动类中添加注释 :@EnableTransactionManagement  

@EnableDiscoveryClient
@SpringBootApplication
@EnableFeignClients
@EnableTransactionManagement
public class DeploymentServiceApplication {

    public static void main(String[] args){
        SpringApplication.run(DeploymentServiceApplication.class, args);
    }

}

 

二:在相应地方加上注解:@Transactional 即可

@Service
public class DemoServiceImpl implements DemoService {
    @Autowired
    PersonRepository personRepository;

    @Transactional(rollbackFor = {IllegalArgumentException.class})
    @Override
    public Person savePersonWithRollBack(Person person) {
        Person p = personRepository.save(person);
        if (person.getName().equals("sang")) {
            throw new IllegalArgumentException("sang 已存在,数据将回滚");
        }
        return p;
    }

    @Transactional(noRollbackFor = {IllegalArgumentException.class})
    @Override
    public Person savePersonWithoutRollBack(Person person) {
        Person p = personRepository.save(person);
        if (person.getName().equals("sang")) {
            throw new IllegalArgumentException("sang已存在,但数据不会回滚");
        }
        return p;
    }
}

 

在Spring Boot中使用数据库事务

标签:name   imp   void   gap   enabled   ide   exce   deploy   存在   

原文地址:http://www.cnblogs.com/UniqueColor/p/7220047.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!