码迷,mamicode.com
首页 > 其他好文 > 详细

Cannot find current proxy: Set 'exposeProxy' property on Advised to 'true' to make it available.

时间:2020-07-07 10:21:40      阅读:203      评论:0      收藏:0      [点我收藏+]

标签: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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!