可配置的应用上下文类型org.springframework.context.ConfigurableApplicationContext无法解析。

7
当我尝试在Spring Tool Suite中创建我的第一个应用程序时,遇到了以下错误:
多个标记在此行: - 无法解析类型org.springframework.context.ConfigurableApplicationContext。它是从必需的.class文件间接引用的。 - 来自SpringApplication类型的方法run(Object,String ...)指向缺少的类型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.welcome</groupId>
        <artifactId>demo</artifactId>
        <version>0.0.1-SNAPSHOT</version>
        <packaging>jar</packaging>

        <name>welcome</name>
        <description>Demo project for Spring Boot</description>

        <parent>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-parent</artifactId>
            <version>1.3.6.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>
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter</artifactId>
            </dependency>
        </dependencies>

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



    This is the Controller Used


    package com.welcome.demo;

    import org.springframework.boot.SpringApplication;
    import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
    import org.springframework.boot.autoconfigure.SpringBootApplication;


    @SpringBootApplication
    @EnableAutoConfiguration
    public class WelcomeApplication {

        public static void main(String[] args)throws Exception {
            SpringApplication.run(WelcomeApplication.class, args);
        }
    }

有人能帮忙吗?我错在哪里了?并且项目文件夹上显示红色感叹号。


很难说。但是类路径似乎缺少了一些东西。可能是pom的问题,也可能是maven/m2e还没有正确下载所有依赖项并将它们添加到eclipse类路径中。尝试使用项目“Maven”上下文菜单中的“更新项目”操作。如果这样做没有帮助,那么很可能需要向pom添加一些必需的依赖项。 - Kris
如果这个回答对您有帮助,请点击接受bpjoshi的回答 - watery
2个回答

26
您的Maven缓存已损坏。为解决此问题,请按照以下步骤操作:
  • 在命令行中进入项目目录。
  • 确保您的POM.xml与命令行位于同一目录中。
  • 运行以下命令:

    mvn dependency:purge-local-repository
    
    如果您收到“构建成功”的消息,则表示已解决错误。 如果错误仍然存在,请删除您的(〜/。m2 / repository / org / springframework)文件夹并运行。
    mvn package
    

现在它将正常工作。


0

将spring-boot-starter-parent更新到最新版本。这解决了我的问题。

<parent>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-parent</artifactId>
      **<version>1.3.6.RELEASE</version> // update this to latest**
      <relativePath/> <!-- lookup parent from repository -->
</parent>

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接