Step 1
打开pom.xml文件,添加spring-boot-devtools依赖。
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
<optional>true</optional>
</dependency>
添加<fork>true</fork>属性
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<!--如果没有该项配置devtools不会起作用-->
<fork>true</fork>
</configuration>
</plugin>
Step 2
打开application.properties文件,关闭freemarker的缓存。
# 关闭freemarker的缓存
Step 3
打开Preference -> Build, Execution, Deployment -> Compiler,勾选Build project automatically。
Step 4
从谷歌浏览器插件中心下载LiveReload。
Step 5
重启浏览器,重启idea。