用Intellij进行开发时,直接启动Spring的Application,然后修改代码,可以自动重启,不需要停下来、打包、运行。
- 在 pom.xml 里增加一个依赖:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
<scope>runtime</scope>
</dependency>
- 在 pom.xml 里添加 spring-boot-maven-plugin:
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<!--fork : 如果没有该项配置,可能devtools不会起作用,即应用不会restart 这个要手动加进去 -->
<fork>true</fork>
</configuration>
</plugin>
</plugins>
</build>
注:得加 <fork>true</fork>
。
-
在 Intellij 里设置自动编译、打包
- 允许编译器在app允许时自动编译
快捷键Cmd + Alt + Shift + /
,选择Registry
,然后勾选compiler.automake.allow.when.app.running
:
参考文档
https://blog.csdn.net/qq_27886997/article/details/82799217
这篇还介绍了devtools的原理、排除资源、禁用重启等等,还是挺有用的。