【SpringBoot——添加事物】
springboot - 添加事物步骤注意三点:① 启动类上增加注解 @EnableTransactionManagement* ② 需要添加事物的业务方法上添加注解 @Transactional(rollbackFor = RuntimeException.class)* ③ 必须在service 层,必须为public 修饰,必须抛出异常1. 注解开启事物@Ena...