实现项目无需重复进行启动 即自动更新页面信息
步骤一 引入devtools 依赖
<!--devtools热部署(devtools可以实现页面热部署 spring.thymeleaf.cache=false来实现)-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
<scope>true</scope>
</dependency>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<!-- IntelliJ IDEA本地测试去掉fork也生效 -->
<fork>true</fork>
</configuration>
</plugin>
</plugins>
</build>
步骤二 开启IDEA自动编译和automake功能
ctrl+alt+shift+/
至此 热部署完成