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

时间 : 21-03-11 栏目 : Java技术 作者 : 冰镇宝贝321 评论 : 0 点击 : 1,640 次

出现这个报错通常是因为使用了AopContext.currentProxy()函数却没有添加相应的配置造成的。


通过注解添加配置(加在类上):

@EnableAspectJAutoProxy(proxyTargetClass = true, exposeProxy = true)


或通过xml配置文件添加配置:

<aop:aspectj-autoproxy proxy-target-class="true" expose-proxy="true"/>

这样就解决了报错问题。



本文标签 , ,

除非注明,文章均为( 冰镇宝贝321 )原创,转载请保留链接: https://bkqv5.com/archives/568.html

Cannot find current proxy: Set ‘exposeProxy’ property on Advised to ‘true’ to make it available.:等您坐沙发呢!

发表评论




0