1、pom.xml文件導入所需依賴文件
SpringBoot熱部署插件spring
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
<scope>runtime</scope>
</dependency>app
2、pom.xml文件build標籤進行修改以下maven
該插件由Maven提供,它會自動使用當前運行mvn命令的JDK去編譯Java源代碼。spring-boot
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration><fork>true</fork></configuration>
</plugin>
</plugins>
</build>ui
3、打開File==》Settings輸入Compiler勾選Buid project automatically點擊OK.net
4、CTRL + SHIFT + A ==》 查找Registry ==》勾選compiler.automake.allow.when.app.running便可插件
---------------------
做者:a槑
來源:CSDN
原文:https://blog.csdn.net/Lv_1093964643/article/details/80687236
版權聲明:本文爲博主原創文章,轉載請附上博文連接!xml