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

问题描述 投票:0回答:2

尝试创建时出现此异常

ApplicationContext applicationContext;

我有

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

在我的servlet中也有这个]

导入org.springframework.context.ApplicationContext;

在我的pom.xml中,但仍然收到此味精。我尝试过mvn.clean

当尝试创建ApplicationContext applicationContext时,我得到此异常;我有org.springframework

java servlets spring-context
2个回答
0
投票

您是否尝试过:


0
投票

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

© www.soinside.com 2019 - 2024. All rights reserved.