Designed by 77
加载资源 ......
感谢 ♥ 作者
先不感谢了

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"/>

这样就解决了报错问题。

 

"祝你早安午安晚安。"

posted @ 2020-07-07 07:29  yanggb  阅读(11201)  评论(0编辑  收藏  举报