SpringBoot项目在IDEA中实现热部署

版本: Intellij IDEA 2017.3

1. 引入插件

引入热加载的插件,springboot 1.3开始就有的...


    org.springframework.boot
    spring-boot-devtools
    true

project 中添加spring-boot-maven-plugin,主要在eclipse中起作用,idea不需要加此配置。
SpringBoot 项目的话,应该是有此配置,加 里面的内容即可。


       
            
                org.springframework.boot
                spring-boot-maven-plugin
                
                    true
                
            
        
    

2. IDEA(2017.3) 配置

  1. 点击: File-> Settings -> Build ,Execution,Deployment -> Compiler

Mac版IDEA,使用快捷键 command + , 打开 Preferences
定位到-> Build ,Execution,Deployment -> Compiler

SpringBoot项目在IDEA中实现热部署_第1张图片
Compiler.png

选中 Build project automatically,然后点击 OK 保存退出。

  1. 使用组合键:Shift+ALT+Ctrl+/ ,选择Registry,回车

Mac版 command + option +shift +/

SpringBoot项目在IDEA中实现热部署_第2张图片
Registry-01.png

SpringBoot项目在IDEA中实现热部署_第3张图片
Registry-02.png

搜索 complier.automake.allow.when.app.running ,找到后,勾选 ☑️ 退出即可。

  1. 禁用浏览器缓存
    按F12(更多工具---->开发者工具),找到network,勾选Disable Cache。

你可能感兴趣的:(SpringBoot项目在IDEA中实现热部署)