Spring 启动 devtools 在 Netbeans 中不工作
Spring boot dev tools not working in Net beans
我已经阅读了 spring 引导开发工具并想尝试一下,我将以下内容添加到我的 pom
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
</dependency>
并在 Net beans 选项中打开 devtools 重启手动触发器。
运行 我在 运行 项目-> 执行目标中使用以下选项 org.springframework.boot:spring-boot-maven-plugin:1.3.2.RELEASE:run
但是当我在代码中更改 smth 时,项目不是 re运行。我错过了什么?
点击项目下的Properties -> Build -> Compile 是一个checkbox "Compile On Save" 被打勾。通过修改 .java 文件并检查 /target/classes.
中的时间戳验证这确实有效
另外,将 Netbeans 项目属性中 运行 项目操作中的执行目标更改为以下内容:
process-classes org.codehaus.mojo:exec-maven-plugin:1.2.1:exec
将显式资源目录位置(在我的例子中是 src/main/resources)配置为 pom.xml 解决了无法重新加载的问题:
<build>
...
<resources>
<resource>
<directory> src/main/resources </directory>
</resource>
</resources>
...
</build>
我已经阅读了 spring 引导开发工具并想尝试一下,我将以下内容添加到我的 pom
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
</dependency>
并在 Net beans 选项中打开 devtools 重启手动触发器。
运行 我在 运行 项目-> 执行目标中使用以下选项 org.springframework.boot:spring-boot-maven-plugin:1.3.2.RELEASE:run
但是当我在代码中更改 smth 时,项目不是 re运行。我错过了什么?
点击项目下的Properties -> Build -> Compile 是一个checkbox "Compile On Save" 被打勾。通过修改 .java 文件并检查 /target/classes.
中的时间戳验证这确实有效另外,将 Netbeans 项目属性中 运行 项目操作中的执行目标更改为以下内容:
process-classes org.codehaus.mojo:exec-maven-plugin:1.2.1:exec
将显式资源目录位置(在我的例子中是 src/main/resources)配置为 pom.xml 解决了无法重新加载的问题:
<build>
...
<resources>
<resource>
<directory> src/main/resources </directory>
</resource>
</resources>
...
</build>