spring boot 热启动

    1. 加入Spring-Boot-devtools 依赖

      org.springframework.boot
      spring-boot-devtools
      true

2.启动的时候的加载器
当我们再次启动的时候,使用的加载器就变为了 restartedMain 了,说明热部署已经成功。

3.修改IDEA配置
(1)“File” -> “Settings” -> “Build,Execution,Deplyment” -> “Compiler”,选中打勾 “Build project automatically” 。

  1. 组合键:“Shift+Ctrl+Alt+/” ,选择 “Registry” ,选中打勾 “compiler.automake.allow.when.app.running” 。

你可能感兴趣的:(Java)