转载:https://blog.csdn.net/w605283073/article/details/90454057
一、背景
开发中常见这个错误:
The bean ‘xxxService’ could not be injected as a’com.xxxx.xxx.xxxService’ because it is a JDK dynamic proxy that implements:
xxxxxx
Action:
Consider injecting the bean as one of its interfaces orforcing the use of CGLib-based proxiesby setting proxyTargetClass=true on @EnableAsync and/or @EnableCaching.
二、常见解决方案
主要配置基于JDK的代理还是基于类的动态代理的配置,这种错误提示需要设置基于类的代理才行。
比如单元测试里注入了实现类,且实现类里有@Transaction注解
如果是springboot项目,在配置里设置
spring.aop.proxy-target-class=true
proxy-target-class属性值决定是基于JDK接口还是基于类的代理被创建。
如果为true代表基于类的代理,
如果为false代表基于JDK接口的代理。
或者在配置类上设置
@EnableAspectJAutoProxy(proxyTargetClass = true)
当然另外的几个注解都支持
@EnableAsync