获取spring代理对象出现Cannot find current proxy问题
warning:
这篇文章距离上次修改已过414天,其中的内容可能已经有所变动。
报错原因
因为Spring默认不允许获取代理对象,如果使用需要手动开启
1、引入依赖
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
</dependency>
2、开启AOP获取(在SpringBoot启动类或者配置类上加)
@EnableAspectJAutoProxy(exposeProxy = true)