SpringBoot项目在IDEA开发环境下开启热部署调试

引入插件

在项目中引入maven依赖插件spring-boot-devtools

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
</dependency>

配置项目启动设置

使用快捷键Ctrl+Alt+Shift+/调出当前项目的启动设置

选择1.Registry 找到compiler.automake.allow.when.app.running的值 设置为true

开启项目自动编译

使用快捷键Ctrl+Alt+Shift+s调出当前项目全局配置

Build,Execution,Deployment -> Complier -> Build project automatically 中 勾选改选项启用自动编译功能