SpringBoot添加热部署

一、导入依赖


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

二、pom.xml中导入plugin节点

  SpringBoot添加热部署_第1张图片

 三、settings勾选自动

  SpringBoot添加热部署_第2张图片

 四、Ctrl+Shift+Alt+/ 弹出Registry

  SpringBoot添加热部署_第3张图片

 五、勾选compiler.automake.allow.when.app.running

  SpringBoot添加热部署_第4张图片

!!完成以上五步,热部署便配置完成,但是此热部署自动重新启动需等待几秒!!

你可能感兴趣的:(SpringBoot添加热部署)