web-dev-qa-db-fra.com

Le type org.springframework.context.ConfigurableApplicationContext ne peut pas être résolu

Je reçois le message d'erreur suivant lorsque j'ai essayé de créer ma première application dans Spring Tool Suite:

Plusieurs marqueurs à cette ligne - Le type org.springframework.context.ConfigurableApplicationContext ne peut pas être résolu. Il est référencé indirectement à partir des fichiers .class requis - La méthode exécutée (Object, String ...) à partir du type SpringApplication fait référence au type manquant ConfigurableApplicationContext

Voici le pom.xml suivant

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

Quelqu'un peut-il aider à cela? Quelle est mon erreur? Et il montre un point d’exclamation rouge dans le dossier du projet.

6
raji

Votre cache Maven est corrompu. Pour résoudre ce problème, suivez les étapes ci-dessous:

  • Accédez au répertoire de votre projet sur la ligne de commande. 
  • Assurez-vous que votre fichier POM.xml se trouve dans le même répertoire que votre ligne de commande. 
  • Lancer la commande 

    mvn dependency:purge-local-repository
    
  • Si vous recevez build réussie message, cela signifie que l'erreur a été résolue.

  • Si l'erreur persiste, supprimez votre dossier (~/.m2/repository/org/springframework) et exécutez 

    mvn package
    

Cela fonctionnera correctement maintenant.

25
bpjoshi

Mise à jour du printemps-boot-starter-parent à la dernière version. Résolu le problème pour moi

<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