Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

常用框架/重要知识点/Spring事务详解/@Transactional 注解使用详解/Spring AOP 自调用问题 #2091

Closed
JianingWu911 opened this issue Jul 26, 2023 · 2 comments
Labels
enhancement New feature or request or suggestion

Comments

@JianingWu911
Copy link

JianingWu911 commented Jul 26, 2023

基于动态代理的AOP,在自调用时候也可以正常开启事务。
如下面代码:

@Service
public class MyService {

private void method1() {
     ((MyService)AopContext.currentProxy()).method2(); // 先获取该类的代理对象,然后通过代理对象调用method2。
     //......
}
@Transactional
 public void method2() {
     //......
  }
}
@Snailclimb
Copy link
Owner

Snailclimb commented Aug 14, 2023

基于动态代理的AOP,在自调用时候也可以正常开启事务。 如下面代码:

@Service
public class MyService {

private void method1() {
     ((MyService)AopContext.currentProxy()).method2(); // 先获取该类的代理对象,然后通过代理对象调用method2。
     //......
}
@Transactional
 public void method2() {
     //......
  }
}

哈哈哈,这种确实可以。使用了 AopContext.currentProxy() 方法来获取当前类的代理对象,然后通过代理对象调用 method2()。这样就相当于从外部调用了 method2(),所以事务注解才会生效。

我加一个说明吧,本质这个例子也不算是自调用。

@Snailclimb Snailclimb added the enhancement New feature or request or suggestion label Aug 14, 2023
@zbcdd
Copy link

zbcdd commented Aug 9, 2024

如果AOP是通过CGLIB实现的,那么代理对象继承目标对象,这时候不也可以嵌套增强吗

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request or suggestion
Projects
None yet
Development

No branches or pull requests

3 participants