idea环境中开启springBoot热部署

开启idea环境中Springboot热部署,需要以下步骤:

第一步:引入spring-boot-devtools。在pom中加入以下代码


    org.springframework.boot
    spring-boot-devtools
    runtime
    true

加入以下插件,项目可以通过手动编译后,自动启动。

第二步:开启idea自动编译模式。idea默认没有开启自动编译。具体过程如下。

  •   进入设置setting,Build,Execut, Deployment -> Compiler 勾选右侧的Build Project automatically  

      idea环境中开启springBoot热部署_第1张图片

  •   开启项目运行时自动build。

       1、ctrl + shift + a 搜索命令,搜索命令:registry

idea环境中开启springBoot热部署_第2张图片

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

idea环境中开启springBoot热部署_第3张图片

你可能感兴趣的:(工具技巧,springboot,idea,热部署,devtools)