1.配置类上加入注解:
@EnableAspectJAutoProxy(exposeProxy = true)//开启spring注解aop配置的支持
2.使用如下方式获取代理对象:
AopContext.currentProxy() 如: StockService bean = (StockService) AopContext.currentProxy();
使用bean调用本类方法即可使事务生效
标签:调用,StockService,bean,currentProxy,生效,同类,AopContext From: https://www.cnblogs.com/yyfyy/p/17148817.html