美文网首页
SpringBoot项目在IDEA中实现热部署

SpringBoot项目在IDEA中实现热部署

作者: 米有意思 | 来源:发表于2018-07-28 14:45 被阅读0次

版本: Intellij IDEA 2017.3

1. 引入插件

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

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-devtools</artifactId>
    <optional>true</optional>
</dependency>

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

<build>
       <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <configuration>
                    <fork>true</fork>
                </configuration>
            </plugin>
        </plugins>
    </build>

2. IDEA(2017.3) 配置

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

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

Compiler.png

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

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

Mac版 command + option +shift +/

Registry-01.png
Registry-02.png

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

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

相关文章

网友评论

      本文标题:SpringBoot项目在IDEA中实现热部署

      本文链接:https://www.haomeiwen.com/subject/rasomftx.html