BeanInstantiationException:无法实例化:未找到默认构造函数;

时间:2021-03-09 10:30:49

标签: java spring spring-boot

我正在试验 Spring 5,当我运行测试应用程序时,它抛出此异常。我知道如果我们将 @Autowired 用于字段和 Setter 方法,我们需要一个零参数构造函数,因为首先使用零参数构造函数实例化 bean,然后注入依赖 bean。但是如果构造函数是@Autowired,为什么我们需要一个零参数构造函数,因为这个构造函数将用于实例化 bean?

is org.springframework.beans.BeanInstantiationException: Failed to instantiate [com.spring.hello.Student]: No default constructor found; nested exception is java.lang.NoSuchMethodException: com.spring.hello.Student.<init>()
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateBean(AbstractAutowireCapableBeanFactory.java:1155)
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1099)

Student.java

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;

@Component
public class Student {
    
    private PersonalInfo pI;
    
    @Autowired
    public Student (PersonalInfo pI) {
        this.pI = pI;
    }
    
}

PersonalInfo.java

@Component
public class PersonalInfo {
    
    String name;
    
    
    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    private PersonalInfo() {
        System.out.println("constructor...");
    }
    
    public String printHello() {
        return "PersonalInfo...";
    }
}

Test.java

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

import com.spring.hello.Student;

public class Test {

    public static void main(String[] args) {
        ApplicationContext context = new AnnotationConfigApplicationContext("/com/spring/resources/applicationContext.xml");
        Student bean = (Student) context.getBean("student");
        System.out.println(bean);
        
        
    }

}

ApplicationContext.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd">
    <context:annotation-config/>
    <bean id="student" class="com.spring.hello.Student">
        <!-- collaborators and configuration for this bean go here -->
    </bean>
    <bean id="personalInfo" class="com.spring.hello.personalInfo">
        <!-- collaborators and configuration for this bean go here -->
    </bean>
</beans>

编辑

更新测试类后,我得到了

Exception in thread "main" org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean named 'student' available.

1 个答案:

答案 0 :(得分:1)

您的问题是您将注释配置与 XML 配置混合使用。 由于您创建了 ClassPathXmlApplicationContext 的实例,因此只有 XML 中的内容才会被视为配置,而您的 @Autowired 注释将被忽略。

要修复 xml 的错误,您需要在 xml 定义中添加 bean 注入:

    <bean id="student" class="com.spring.hello.Student">
        <constructor-arg ref="personalInfo" />
    </bean>
    <bean id="personalInfo" class="com.spring.hello.personalInfo"></bean>

如果您想改用注解配置,您可以创建一个 AnnotationConfigApplicationContext 实例。然后,您仍然需要使用 @Component 对 student 和 personalInfo 进行注释,以便 Spring 在扫描提供的包时可以将它们作为 bean 找到。

@Component
public class PersonalInfo {
  ...
}

@Component
public class Student{
   ...
}
public static void main(String[] args) {
    var ctx = new AnnotationConfigApplicationContext();
    ctx.scan("com.spring.hello");
    ctx.refresh();
}
相关问题