springboot+maven+devtools热部署

1.添加依赖坐标

       org.springframework.boot

      spring-boot-devtools

     true

     true

2.添加插件

   

       

       

           org.springframework.boot

          spring-boot-maven-plugin

           

           

              true

             

       

   

3.更改idea配置

3.1  “File” -> “Settings” -> “Build,Execution,Deplyment” -> “Compiler”,选中打勾 “Build project automatically” 。

3.2 组合键:“Shift+Ctrl+Alt+/” ,选择 “Registry”,选中打勾“compiler.automake.allow.when.app.running”.

4.chrome禁止缓存

F12或者“Ctrl+Shift+I”,打开开发者工具,“Network” 选项卡下 选中打勾 “Disable Cache(while DevTools is open)”

你可能感兴趣的:(SpringBoot)