那么Spring Boot项目在IntelliJ IDEA中是如何进行热更新配置的呢?步骤如下:
1.首先在pom.xml中添加springboot devtool
依赖库
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
</dependency>
</dependencies>
2.然后在settings>Build,Execution,Deployment>compiler
中的“ Build project automatically
”勾选中,如下
3.最后使用”shift+ctrl+A
”快捷键打开如下窗口,并输入“registry
”,打开对应设置窗口:
再在打开的窗口中找到”compiler.automake.allow.when.app.running
”并勾选中
这样我们就完成了Spring Boot项目在IntelliJ IDEA中的热更新配置。