1. 程式人生 > >在IDEA中配置spring boot專案的熱更新

在IDEA中配置spring boot專案的熱更新

在我使用IDEA的過程中,我發現Spring Boot專案本來自帶的一個熱部署工具無法使用,這裡在參考各家部落格後給出解決方案:

修改POM

首先POM檔案需要包含spring boot的熱部署工具,maven依賴如下:

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

這裡需要注意,這個optional選項指定為true

增加一個編譯工具的配置

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

這裡注意,這個fork選項值為true 

更改IDEA配置

專案POM檔案配置完成後修改IDEA的自己一個配置,配置地址為:

Setting→Build,ExecutionDeployment→Compiler,如下圖所示

點選Apply,然後使用快捷鍵 shift+ctrl+alt+/,有一個小視窗,如下:

按數字1,然後選擇compiler.automake.allow.when.app.running,把勾選上

 然後點選close就好了

PS:IDEA版本2018.2.4