We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
基于动态代理的AOP,在自调用时候也可以正常开启事务。 如下面代码:
@Service public class MyService { private void method1() { ((MyService)AopContext.currentProxy()).method2(); // 先获取该类的代理对象,然后通过代理对象调用method2。 //...... } @Transactional public void method2() { //...... } }
The text was updated successfully, but these errors were encountered:
基于动态代理的AOP,在自调用时候也可以正常开启事务。 如下面代码: @Service public class MyService { private void method1() { ((MyService)AopContext.currentProxy()).method2(); // 先获取该类的代理对象,然后通过代理对象调用method2。 //...... } @Transactional public void method2() { //...... } }
哈哈哈,这种确实可以。使用了 AopContext.currentProxy() 方法来获取当前类的代理对象,然后通过代理对象调用 method2()。这样就相当于从外部调用了 method2(),所以事务注解才会生效。
我加一个说明吧,本质这个例子也不算是自调用。
Sorry, something went wrong.
如果AOP是通过CGLIB实现的,那么代理对象继承目标对象,这时候不也可以嵌套增强吗
No branches or pull requests
基于动态代理的AOP,在自调用时候也可以正常开启事务。
如下面代码:
The text was updated successfully, but these errors were encountered: