idea 中 Spring boot 热部署无效 问题记录

热部署,就是在应用正在运行的时候升级软件,却不需要重新启动应用。

没有热部署和有热部署的开发效率是天差地别的。

官方地址:https://docs.spring.io/spring-boot/docs/2.1.0.BUILD-SNAPSHOT/reference/htmlsingle/#using-boot-devtools

在 pom.xml 文件中添加如下配置:


   org.springframework.boot
   spring-boot-devtools
   true

配置过后还不生效需要在idea中修改两个设置

1:File →Settings 搜索 compiler  将 Build project automatically 勾选  Apply OK

2ctrl+alt+shift+/ 点击 Registry...  找到 compiler.automake.allow.when.app.running 勾选  close 快捷键也可能是 alt + shift + a

你可能感兴趣的:(idea 中 Spring boot 热部署无效 问题记录)