gpt4 book ai didi

java.lang.ClassNotFoundException : org. springframework.context.ApplicationContext

转载 作者:行者123 更新时间:2023-12-02 09:27:47 26 4
gpt4 key购买 nike

尝试创建时出现此异常

ApplicationContext applicationContext;

我有

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

我的 servlet 中也有这个

import org.springframework.context.ApplicationContext;

在我的pom.xml中,但仍然收到此消息。我尝试了mvn.clean

最佳答案

您可以通过两种方式创建ApplicationContext

1) 基于 XML:

ApplicationContext ctx = new ClassPathXmlApplicationContext("beans.xml");

此处 beans.xml 包含所有 bean 定义。

2) 基于注释:

ApplicationContext context = new AnnotationConfigApplicationContext(ApplicationConfiguration.class);

这里,ApplicationConfiguration使用@Configuration注释进行注释。

另外,请确保类路径包含所有 spring jar。

关于java.lang.ClassNotFoundException : org. springframework.context.ApplicationContext,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58216280/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com