1. 程式人生 > >idea中設置springboot熱部署

idea中設置springboot熱部署

art 選中 AS exec 不用 exe ctrl+ execution bsp

在idea中設置springboot熱部署,項目修改的時候不用手動重啟應用

1,pom中添加依賴

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

2.ctrl+alt+s 打開設置 File | Settings | Build, Execution, Deployment | Compiler,選中打勾 “Build project automatically”

技術分享圖片

3.“Shift+Ctrl+Alt+/”(Windows) 、“Shift+CMD+Alt+/” (MAC平臺),選擇 “Registry” ,選中打勾 “compiler.automake.allow.when.app.running” 。

技術分享圖片

idea中設置springboot熱部署