聊聊spring @Transactional 事务无法使用的可能原因

网友投稿 271 2022-12-26

聊聊spring @Transactional 事务无法使用的可能原因

spring transaction

建议

Spring团队的建议是你在具体的类(或类的方法)上使用 @Transactional 注解,

而不要使用在类所要实现的任何接口上。你当然可以在接口上使用 @Transactional 注解,

但是这将只能当你设置了基于接口的代理时它才生效。

因为注解是不能继承的,

这就意味着如果你正在使用基于类的代理时,那么事务的设置将不能被基于类的代理所识别,

而且对象也将不会被事务代理所包装(将被确认为严重的)。

因此请接受Spring团队的建议并且在具体的类上使用 @Transactional 注解。

事务无法使用的可能原因

导入spring的事务注解

应该是

org.springframework.transaction.annotation.Transactional

而不是

javax.transaction.Transactional

是否开启了对注解的解析:

xml 文件配置

springboot

注解开启自动扫描

@EnableTransactionManagement

spring是否扫描到你使用注解事务的这个类所在的包

配置xml

springboot 开启事务

@EnableTransactionManagement

数据库引擎要支持事务

如果是mysql,注意表要使用支持事务的引擎,比如InnoDB,如果是myisam,事务是不起作用的

springboot的配置

spring.jpa.prohttp://perties.hibernate.dialect=org.hibernate.dialect.MySQL5InnoDBDialect

检查方法是不是public的

@Transactional 仅仅在 public 方法,才能进行事务管理。

这是因为在使用 Spring AOP 代理时,

Spring 在调用在图中的 TransactionInterceptor 在目标方法执行前后进行拦截之前(图中是cglib代理)

DynamicAdvisedInterceptor(CglibAopProxy 的内部类)的的 intercept 方法或 JdkDynamicAopProxy 的 invoke 方法会间接调用 AbstractFallbackTransactionAttributeSource ,而会去调用computeTransactionAttribute 方法。

protected TransactionAttribute computeTransactionAttribute(Method method,

Class> targetClass) {

// Don't allow no-public methods as required.

if (allowPublicMethodsOnly() && !Modifier.isPublic(method.getModifiers())) {

return null;

}

}

这个方法会判断如果不是 public 则会返回 null

异常类型是不是unchecked异常

默认,只有unchecked异常时才回滚该事务

spring只有在抛出的异常为运行时unchecked异常时才回滚该事务,

也就是抛出的异常为RuntimeException的子类(Errors也会导致事务回滚).

而抛出checked异常则不会导致事务回滚。可以明确的配置在抛出那些异常时回滚事务,

包括checked异常。也可以明确定义那些异常抛出时不回滚事务。

如果想让checked异常也回滚,在注解上面写明异常类型即可:

@Transactional (rollbackFor=Exception.class)

noRollbackFor 自定义不回滚的异常

异常是不是被catch住了

在Service层捕捉异常后,发现事务不生效。

在Service层手工捕捉并处理了异常(try…catch)等于把异常吃掉了,

Spring自然不知道这里有错,更不会主动去回滚数据。推荐做法是在Service层统一抛出异常,

然后在Controll层统一处理。

下面代码事务是无法生效的

//在类上@Transactional 说明,所以public都是有事务的

@Service

@Transactional

public class StudentService {

@Autowired

private GroupRepository groupRepository;

@Autowired

private InstituteRepository instituteRepository;

public void initStudent() {

Institute institute = Institute.builder().build();

institute.setCode("TEST4");

instituteRepository.save(institute);

// 这里自己处理异常,spring不会知道存在异常,无法进行事务回滚

try {

throw new RuntimeException("运行时异常----------看事务是否起作用");

} catch (Exception e) {

e.printStackTrace();

}

}

}

修改成如下代码

public void initStudent() throws Exception{

Institute institute = Institute.builder().build();

institute.setCode("TEST4");

instituteRepository.save(institute);

groupRepository.save(group);

//不进行异常处理,而是把异常抛出

throw new RuntimeException("运行时异常----------看事务是否起作用");

}

避免 Spring 的 AOP 的自调用问题

检查是不是同一个类中的方法调用(如a方法调用同一个类中的b方法),从而避免 Spring 的 AOP 的自调用问题

这是因为在 Spring 的 AOP 代理下,只有目标方法由外部调用,

目标方法才由 Spring 生成的代理对象来管理,这会造成自调用问题。

若同一类中的其他没有@Transactional 注解的方法内部调用有@Transactional 注解的方法,

有@Transactional 注解的方法的事务被忽略,不会发生回滚。

@Service

public class StudentService {

@Autowired

private GroupRepository groupRepository;

@Autowired

private InstituteRepository instituteRepository;

//initStudent() 加上@Transactional(),则会回滚

public void initStudent() throws Exception{

Institute institute = Institute.builder().build();

institute.setCode("TEST4");

instituteRepository.save(institute);

//虽然 initGroup() 有 @Transactional() 但是事务还是没起作用

initGroup();

throw new RuntimeException("运行时异常----------看事务是否起作用");

}

@Transactional()

public void initGroup() {

Group group = Group.builder().academic_year(2015).build();

group.setCode("ELSE1");

groupRepository.save(group);

}

}

AspectJ 取代 Spring AOP 代理

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:Java开发岗位面试被问到反射怎么办
下一篇:有api接口的网站(提供api接口的平台)
相关文章

 发表评论

暂时没有评论,来抢沙发吧~