我是靠谱客的博主 成就花卷,最近开发中收集的这篇文章主要介绍spring-boot 启动时候 出现异常:The bean 'xxx' could not be injected as a 'xx.xxxx' because it is a JDK dynami...,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
The bean 'xxxService' could not be injected as a 'AaaXxxService' 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.
查了半天,原来是因为把 @Autowired 换成了 @Resource
以前的代码是(是可以的)
@Autowired private AaaXxxService xxxService;
修改后的代码(不可以的)
@Resource private AaaXxxService xxxService;
这样就报错了。。
主要问题是名字和类名不一样导致 Resource 注入失败,但是刚好又有一个 xxxService 同名的类存在,就会报这个错误
这里要说一下,@Resource 是根据名字找对象,名字是什么的名字呢?
先根据变量名字找,如果找到就直接使用,如果找不到就才根据类的名字找。
这个时候刚好有一个同名的对象存在,直接返回赋值,但是这个时候类型和对象是不一致的,所以就报异常。
解决方法就是 名字改成和类一样
@Resource private AaaXxxService aaaXxxService;
转载于:https://www.cnblogs.com/romicLord/p/8664198.html
最后
以上就是成就花卷为你收集整理的spring-boot 启动时候 出现异常:The bean 'xxx' could not be injected as a 'xx.xxxx' because it is a JDK dynami...的全部内容,希望文章能够帮你解决spring-boot 启动时候 出现异常:The bean 'xxx' could not be injected as a 'xx.xxxx' because it is a JDK dynami...所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复