现在JavaConfigApplicationContext类在哪里?

时间:2015-08-07 20:33:57

标签: spring maven spring-java-config

maven工件中的JavaConfigApplicationContext类地址是什么?

无法在

中找到它
 <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-core</artifactId>
            <version>4.2.0.RELEASE</version>
        </dependency>

        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context</artifactId>
            <version>4.2.0.RELEASE</version>
        </dependency>

        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context-support</artifactId>
            <version>4.2.0.RELEASE</version>
        </dependency>

1 个答案:

答案 0 :(得分:25)

在Spring 4.2.0中,为了从ApplicationContext创建@Configuration的实例 - 注释类使用:

ApplicationContext context = new AnnotationConfigApplicationContext(MyConfig.class);

请参阅this answer了解JavaConfigApplicationContext不再存在的原因。