Cannot find current proxy: Set 'exposeProxy' property on Advised to 'true' to make it available.
出现这个报错通常是因为使用了AopContext.currentProxy()函数却没有添加相应的配置造成的。
通过注解添加配置(加在类上):
@EnableAspectJAutoProxy(proxyTargetClass = true, exposeProxy = true)
或通过xml配置文件添加配置:
<aop:aspectj-autoproxy proxy-target-class="true" expose-proxy="true"/>
这样就解决了报错问题。
"祝你早安午安晚安。"
你要去做一个大人,不要回头,不要难过。