标签:aop ext can div getc 配置文件 通过 span target
出现这个报错通常是因为使用了AopContext.currentProxy()函数却没有添加相应的配置造成的。
通过注解添加配置(加在类上):
@EnableAspectJAutoProxy(proxyTargetClass = true, exposeProxy = true)
或通过xml配置文件添加配置:
<aop:aspectj-autoproxy proxy-target-class="true" expose-proxy="true"/>
这样就解决了报错问题。
"祝你早安午安晚安。"
Cannot find current proxy: Set 'exposeProxy' property on Advised to 'true' to make it available.
标签:aop ext can div getc 配置文件 通过 span target
原文地址:https://www.cnblogs.com/yanggb/p/13227072.html