1
resposta

Dependência devtools não restarta o servidor automaticamente

Fiz o import e não funciona. Olhei num tópico aberto e o instrutor pedia para excluir a pasta spring-boot-devtools da pasta C:\Users\diego.m2\repository\org\springframework\boot

Fiz isso, e importei com o Maven, não deu certo. Estou usando Eclipse.

Segue o meu pom.xml

4.0.0 org.springframework.boot spring-boot-starter-parent 2.2.3.RELEASE br.com.diego forum 0.0.1-SNAPSHOT forum Demo project for Spring Boot

<properties>
    <java.version>11</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>
        <exclusions>
            <exclusion>
                <groupId>org.junit.vintage</groupId>
                <artifactId>junit-vintage-engine</artifactId>
            </exclusion>
        </exclusions>
    </dependency>

    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-devtools</artifactId>
        <optional>true</optional>
        <scope>runtime</scope>
    </dependency>

</dependencies>

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

Oi Diego,

Tenta excluir a pasta .m2 inteira, para o maven baixar novamente todas as dependências do projeto.