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>
答案 0 :(得分:25)
在Spring 4.2.0中,为了从ApplicationContext
创建@Configuration
的实例 - 注释类使用:
ApplicationContext context = new AnnotationConfigApplicationContext(MyConfig.class);
请参阅this answer了解JavaConfigApplicationContext
不再存在的原因。