SpringBoot开发模式自动重启spring-boot-devtools

1、添加依赖

<dependency>
     <groupId>org.springframework.bootgroupId>
     <artifactId>spring-boot-devtoolsartifactId>
     <optional>trueoptional>
 dependency>

2、修改配置application.yml

spring:
  devtools:
    restart:
      enabled: true

3、将项目设置为自动加载

1、打开设置 勾选 Build project automatically
SpringBoot开发模式自动重启spring-boot-devtools_第1张图片
2、打开 Maintenance 选择 1.Register

快捷键 (一起按下四个按键)

windows: Ctrl + Shift +Alt + /

Mac : command + shift + option + /
SpringBoot开发模式自动重启spring-boot-devtools_第2张图片
3、勾选 compiler.automake.allow.when.app.running
SpringBoot开发模式自动重启spring-boot-devtools_第3张图片

参考
SpringBoot热部署自动重启 spring-boot-devtools

你可能感兴趣的:(SpringBoot开发模式自动重启spring-boot-devtools)