SpringBoot---热部署
步骤
1、在pom.xml中添加spring-boot-devtools热部署依赖。
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
</dependency>
2、选择File -> Settings,打开Compiler设置页,勾选build project automatically。
3、在IDEA中按“Ctrl+Shift+Alt+/”打开Maintenance选项框,选中并打开Registry页面,勾选compiler.automaker.allow.when.app.running指定在程序运行时自动编译。