web-dev-qa-db-ja.com

タイプorg.springframework.context.ConfigurableApplicationContextを解決できません

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);
        }
    }

誰もこれで助けることができますか?私の間違いは何ですか?また、プロジェクトフォルダに赤い感嘆符が表示されています。

7
raji

Mavenキャッシュが破損しています。この問題を解決するには、次の手順に従います。

  • コマンドラインでプロジェクトのディレクトリに移動します。
  • POM.xmlがコマンドラインと同じディレクトリにあることを確認してください
  • コマンドを実行する

    mvn dependency:purge-local-repository
    
  • ビルド成功メッセージを受け取った場合、エラーが解決されたことを意味します。

  • それでもエラーが発生する場合は、(〜/ .m2/repository/org/springframework)フォルダーを削除して実行します

    mvn package
    

これで正常に動作します。

25
bpjoshi

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>
0
Kushal