gpt4 book ai didi

java - 没有可用的名为 xxx 的 bean

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:00:20 25 4
gpt4 key购买 nike

这是一个非常简单的程序,有一个主类JavaLoader,一个接口(interface)StudentStudent 由两个类实现。我也做了一个配置类。当我从主类实例化 bean 并调用 Samir 上的方法时。抛出 NoSuchBeanDefinitionException

主类(JavaLoader):

package spring;

import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class JavaLoader {

public static void main(String[] args) {
AnnotationConfigApplicationContext appContext = new
AnnotationConfigApplicationContext("StudentConfig.class");

Student samir = (Student) appContext.getBean("samir", Student.class);
System.out.println(samir.readsBook());
}
}

StudentConfig 类:

package spring;

import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;

@Configuration
@ComponentScan("spring")
public class StudentConfig {

}

Samir 类:

package spring;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import org.springframework.stereotype.Component;

@Component("samir")
public class Samir implements Student{
@Autowired
@Qualifier("history")
Book book;

public Samir(Book book){
this.book = book;
}
public String readsBook(){
return book.readBook();
}
}

预期的输出是应该执行 JavaLoader 上的方法 samir.readsBook()

最佳答案

您需要为 AnnotationConfigApplicationContext 构造函数提供一个 Class 实例:

 new AnnotationConfigApplicationContext(StudentConfig.class);

请注意,StudentConfig.class 与字符串 "StudentConfig.class" 不同。

请注意,AnnotationConfigApplicationContext 也有一个字符串构造函数(这就是您的代码仍然可以编译的原因),但该字符串被解释为用于自动扫描的基础包,而不是比配置类名。

关于java - 没有可用的名为 xxx 的 bean,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55687675/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com