IntelliJ IDEA热部署
1.插件引入(用快速构建springboot项目的方式,configuration标签下加入插件)
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<fork>true</fork> <!-- 明确表示编译版本配置的可用 -->
</configuration>
</plugin>
2.设置自动编译
File->Settings->Compiler->Build Project automatically
3.按住ctrl + shift +alt + / 选择Registry,找到选项Compiler autoMake allow when app running打勾
如果上述步骤之后,任然不行可以再尝试加入第四步:
4.设置项目启动加载方式,菜单栏选择 Run->Edit Configurations
找到spring boot下的 On ‘Update’ action 和 On frame deactivation ,选择 Update classes and resources。
第一步:
第二步: