Eclipse环境 代码跟老师的一样
无论是在XML配置文件中,还是在注解中自定义作用域,都会报错:
org.springframework.beans.factory.BeanNotOfRequiredTypeException: Bean named 'beanScope' is expected to be of type 'com.spring.annotations.learn.BeanScope' but was actually of type 'java.lang.Integer'
如何解决??
该错误的原因就是代码里面注入的组件名称重复了。
仔细检查 @Bean @Resource 修饰的变量名称是不是有重复的。