我是靠谱客的博主 顺心大山,最近开发中收集的这篇文章主要介绍The bean 'xxx' could not be injected as a 'com.github.service.xx' because it is a JDK dynamic proxy,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
Description:
The bean 'pltresService' could not be injected as a 'com.github.service.PltresService' because it is a JDK dynamic proxy that implements:
Action:
Consider injecting the bean as one of its interfaces or forcing the use of CGLib-based proxies by setting proxyTargetClass=true on @EnableAsync and/or @EnableCaching.
分析可知,因为有些service使用了CGLib这种动态代理而不是JDK原生的代理,所以导致问题的出现。
解决方法:
①在启动类上添加@EnableAspectJAutoProxy(proxyTargetClass = true)注解:
@EnableCaching
@SpringBootApplication
@EnableDiscoveryClient // springcloud 客户端
@EnableFeignClients // feign 客户端特殊标识,默认集成ribbon。是一个http客户端
@EnableHystrix // hystrix 断路器 可以和feign配合使用,则@EnableFeignClients @EnableHystrix2个注解都得加上
@EnableAspectJAutoProxy(proxyTargetClass = true)
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}
②在报错的service上添加@Scope(proxyMode = ScopedProxyMode.TARGET_CLASS)注解:
@Service
@Scope(proxyMode = ScopedProxyMode.TARGET_CLASS)
public class PltresService {
@Resource
private PltresMapper pltresMapper;
…… …… ……
}
分析ScopedProxyMode可以发现不同的参数值就对应了不同的代理类型。
public enum ScopedProxyMode {
/**
* Default typically equals {@link #NO}, unless a different default
* has been configured at the component-scan instruction level.
*/
DEFAULT,
/**
* Do not create a scoped proxy.
* <p>This proxy-mode is not typically useful when used with a
* non-singleton scoped instance, which should favor the use of the
* {@link #INTERFACES} or {@link #TARGET_CLASS} proxy-modes instead if it
* is to be used as a dependency.
*/
NO,
/**
* Create a JDK dynamic proxy implementing <i>all</i> interfaces exposed by
* the class of the target object.
*/
INTERFACES,
/**
* Create a class-based proxy (uses CGLIB).
*/
TARGET_CLASS;
}
最后
以上就是顺心大山为你收集整理的The bean 'xxx' could not be injected as a 'com.github.service.xx' because it is a JDK dynamic proxy的全部内容,希望文章能够帮你解决The bean 'xxx' could not be injected as a 'com.github.service.xx' because it is a JDK dynamic proxy所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复