首先在pom.xml中添加依赖
<!-- 热部署模块 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional> <!-- 这个需要为 true 热部署才有效 -->
</dependency>
<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”
最后在chroom浏览器中打开开发者工具(F12)
点击Network——勾选Disable cache

博客介绍了Spring Boot热部署在Idea中的配置方法。先在pom.xml添加依赖,接着修改Idea配置,勾选“Build project automatically”和“compiler.automake.allow.when.app.running”,最后在Chrome浏览器打开开发者工具,勾选Disable cache。
5076

被折叠的 条评论
为什么被折叠?



