慕运维4464000
2017-12-04 15:14
在InjectionServiceImpl类里面构造注入和设值注入同时存在,把spring-injection.xml文件中的构造注入配置注释掉,运行TestInjection类里面的testSetter()设值注入方法,报异常
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'injectionService' defined in class path resource [spring-injection.xml]: Instantiation of bean failed; nested exception is org.springframework.beans.BeanInstantiationException: Could not instantiate bean class [com.imooc.ioc.injection.service.InjectionServiceImpl]: No default constructor found; nested exception is java.lang.NoSuchMethodException: com.imooc.ioc.injection.service.InjectionServiceImpl.<init>()
你在xml文件中用ctrl+鼠标移动到com.imooc....这一块看一下你的路径有没有出错。
把构造注入那段代码注释掉看看呢?会不会是在getBean的时候构造注入但xml里没有构造注入的配置造成的
Spring入门篇
268785 学习 · 963 问题
相似问题