无法访问 org.springframework.context.ConfigurableApplicationContext 类文件

2022-09-01 06:18:44

我是春季启动的新手,在尝试使用弹簧初始值设定项在intellij中构建我的第一个弹簧启动项目(Maven)时,我在创建项目后运行项目时收到此错误:

无法访问 org.springframework.context.ConfigurableApplicationContext class file for org.springframework.context.ConfigurableApplicationContext 未找到

我遵循了许多教程,但每次我遇到此错误时,如何解决此问题?

我的 pom.xml 文件:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
      http://maven.apache.org/xsd/maven-4.0.0.xsd">

    <modelVersion>4.0.0</modelVersion>

    <groupId>com.boot</groupId>
    <artifactId>das-boot</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <packaging>jar</packaging>

    <name>First spring boot app</name>
    <description>project for Spring Boot</description>

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>1.4.0.RELEASE</version>
        <relativePath /> <!-- lookup parent from repository -->
    </parent>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
        <java.version>1.8</java.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>


</project>    

答案 1

我能够通过以下步骤修复它:

  1. 文件 ->使缓存失效并重新启动
  2. 文件 -> 现有源中的新建 -> 项目
  3. 选择 pom.xml 文件(而不是整个项目目录)以加载项目。项目将自动设置。

答案 2

我正在使用IntelliJgradle作为我的弹簧启动应用程序,并遇到了同样的问题。

我通过删除类路径下自动生成的.iml文件解决了这个问题。

希望它能帮助任何后来的人。


推荐