- 添加热部署依赖:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<!-- optional=true,依赖不会传递,该项目依赖devtools;
之后依赖该项目的项目如果想要使用devtools,需要重新引入 -->
<optional>true</optional>
</dependency>
经过测试optional设置为false也可以。
- idea开启自动编译
setting--->compiler--->勾选Make project automatically - ctrl + shift + alt + /,选择Registry(或者Shift+Ctrl+A,输入"registry"),勾上 Compiler autoMake allow when app running