无法解析org.springframework.context.support.GenericApplicationContext类型

时间:2017-12-28 06:38:38

标签: spring

 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文件间接引用的。”。如何解决它?

1 个答案:

答案 0 :(得分:0)

org.springframework.context org.springframework.context.support 依赖项(jar)添加到您的spring项目中。这些罐子中提供了 org.springframework.context.support.GenericApplicationContext 类。