package test;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
import config.StudentConfig;
import model.Student;
public class StudentTest {
public static void main(String[] args) {
AnnotationConfigApplicationContext Context= new AnnotationConfigApplicationContext(StudentConfig.class);
Student obj=(Student)Context.getBean("student");
}
}
Eclipse错误说:“类型org.springframework.context.support.GenericApplicationContext无法解析。它是从所需的.class文件间接引用的。”。如何解决它?
答案 0 :(得分:0)
将 org.springframework.context 和 org.springframework.context.support 依赖项(jar)添加到您的spring项目中。这些罐子中提供了 org.springframework.context.support.GenericApplicationContext 类。