idea中設置springboot熱部署
阿新 • • 發佈:2018-05-25
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熱部署