现在 JavaConfigApplicationContext class 在哪里?
Where is JavaConfigApplicationContext class nowadays?
什么是 JavaConfigApplicationContext class Maven 工件中的地址?
两者都找不到
<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>
在 Spring 4.2.0 中,为了从 @Configuration
-注释的 class 创建 ApplicationContext
的实例,请使用:
ApplicationContext context = new AnnotationConfigApplicationContext(MyConfig.class);
请参阅 this answer 了解 JavaConfigApplicationContext
不再存在的原因。
什么是 JavaConfigApplicationContext class Maven 工件中的地址?
两者都找不到
<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>
在 Spring 4.2.0 中,为了从 @Configuration
-注释的 class 创建 ApplicationContext
的实例,请使用:
ApplicationContext context = new AnnotationConfigApplicationContext(MyConfig.class);
请参阅 this answer 了解 JavaConfigApplicationContext
不再存在的原因。