Idea+Gradle+SpringBoot热部署、热更新

热部署

  • 引入热部署插件
    在builg.gradle的依赖中添加:
  compile("org.springframework.boot:spring-boot-devtools")

热更新

  • Windows系统Idea快捷键 Crtl+Shift+Alt+/

Idea+Gradle+SpringBoot热部署、热更新_第1张图片

  • 勾选 compiler.automake.allow.when.app.running
    Idea+Gradle+SpringBoot热部署、热更新_第2张图片
  • Idea File->settings->Compile,勾选 Build project automaticlly

Idea+Gradle+SpringBoot热部署、热更新_第3张图片

参考:
【1】:https://www.jianshu.com/p/ad049e0afd97

你可能感兴趣的:(SpringBoot)