Spring Boot DevTools不会重新加载应用程序 [英] Spring Boot DevTools doesn't reaload the application

查看:127
本文介绍了Spring Boot DevTools不会重新加载应用程序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用Eclipse,并在pom.xml中添加了此依赖项:

I am using Eclipse and I added in my pom.xml this dependency:

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

因此,在另一个项目中,依存关系运行得很好.DevTools成功地重新加载了我的应用程序,但是在我的新Spring-Boot应用程序中,我具有诸如openCV3.2.0 jar和JavaFX之类的外部库.

So in another project the dependency worked well DevTools reloads my application with success but in my new Spring-Boot application I have external libraries like openCV3.2.0 jar and JavaFX.

这是问题吗?还是可以告诉我,我应该为您提供什么以解决该问题?

Is this a problem? Or can you tell me what should I provide you to fix the problem?

这是我完整的pom.xml文件:

Here is my full pom.xml file:

<?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>people.counter</groupId>
<artifactId>peoplecounter</artifactId>
<version>0.0.1</version>
<packaging>war</packaging>

<name>PeopleCounterLicenta</name>
<description>People Counter project for Spring Boot</description>

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>1.5.4.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-data-jpa</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>
    <!-- https://mvnrepository.com/artifact/org.webjars.bower/ngstorage -->
    <dependency>
        <groupId>org.webjars.bower</groupId>
        <artifactId>ngstorage</artifactId>
        <version>0.3.11</version>
    </dependency>
    <!-- https://mvnrepository.com/artifact/org.webjars.bower/angular-sanitize -->
    <dependency>
        <groupId>org.webjars.bower</groupId>
        <artifactId>angular-sanitize</artifactId>
        <version>1.6.4</version>
    </dependency>
    <!-- https://mvnrepository.com/artifact/org.webjars/angularjs -->
    <dependency>
        <groupId>org.webjars</groupId>
        <artifactId>angularjs</artifactId>
        <version>1.6.4</version>
    </dependency>
    <!-- https://mvnrepository.com/artifact/org.webjars/bootstrap -->
    <dependency>
        <groupId>org.webjars</groupId>
        <artifactId>bootstrap</artifactId>
        <version>3.3.7-1</version>
    </dependency>
    <!-- https://mvnrepository.com/artifact/org.webjars/angular-ui-router -->
    <dependency>
        <groupId>org.webjars</groupId>
        <artifactId>angular-ui-router</artifactId>
        <version>1.0.3</version>
    </dependency>
    <!-- https://mvnrepository.com/artifact/org.webjars.bower/angular-messages -->
    <dependency>
        <groupId>org.webjars.bower</groupId>
        <artifactId>angular-messages</artifactId>
        <version>1.6.4</version>
    </dependency>
    <!-- https://mvnrepository.com/artifact/org.webjars.bower/ng-idle -->
    <dependency>
        <groupId>org.webjars.bower</groupId>
        <artifactId>ng-idle</artifactId>
        <version>1.3.2</version>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-thymeleaf</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-devtools</artifactId>
        <optional>true</optional>
        <scope>runtime</scope>
    </dependency>
    <!-- https://mvnrepository.com/artifact/org.postgresql/postgresql -->
    <dependency>
        <groupId>org.postgresql</groupId>
        <artifactId>postgresql</artifactId>
        <version>42.1.1</version>
    </dependency>

    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-tomcat</artifactId>
        <scope>provided</scope>
    </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>
            <configuration>
                <fork>true</fork>
            </configuration>
        </plugin>
    </plugins>
</build>

推荐答案

从Eclipse菜单中,输入Project,选择自动构建"

From Eclipse menu, entry Project, select "Build automatically"

这篇关于Spring Boot DevTools不会重新加载应用程序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆