报错Caused by: java.lang.NoSuchMethodException: com.imooc.ioc.injection.service.InjectionServiceImpl.<init>()

来源:2-2 Spring注入方式

慕运维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>()

http://img1.mukewang.com/5a24f5da0001333507160498.jpg

http://img.mukewang.com/5a24f5db00010acd09520495.jpg


写回答 关注

2回答

  • 慕圣2610325
    2018-06-06 22:53:18

    你在xml文件中用ctrl+鼠标移动到com.imooc....这一块看一下你的路径有没有出错。

  • 慕九州5032619
    2017-12-04 15:45:33

    把构造注入那段代码注释掉看看呢?会不会是在getBean的时候构造注入但xml里没有构造注入的配置造成的

Spring入门篇

为您带来IOC和AOP的基本概念及用法,为后续高级课程学习打下基础

268785 学习 · 963 问题

查看课程

相似问题