SpringBoot 热部署
1-依赖加上true
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional> <!-- 这个需要为 true 热部署才有效 -->
</dependency>
2-插件加上true
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<fork>true</fork>
</configuration>
</plugin>
接着修改IDEA的设置:
1-File” -> “Settings” -> “Build,Execution,Deplyment” -> “Compiler”,选中打勾 “Build project automatically”
2-组合键:“Shift+Ctrl+Alt+/” ,选择 “Registry” ,选中打勾 “compiler.automake.allow.when.app.running” 上面设置好以后就能看到启动栏类后面有【devtools】字样,
然后修改return后面的内容,Ctrl+s保存一下,就能看到重新启动了 一个小问题耽搁好久,终于解决了...