第一步:spring.thymeleaf.cache= false
spring:
application:
name: server-home
thymeleaf:
prefix:classpath:/templates/
cache:false
第二步:添加maven依赖:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
<!--解决HTML5强校验问题-->
<dependency>
<groupId>net.sourceforge.nekohtml</groupId>
<artifactId>nekohtml</artifactId>
<version>1.9.22</version>
</dependency>
<!--解决thymeleaf模板无法热部署问题-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional> <!--optional设置为true 才为热部署 -->
</dependency>
第三步:修改plugins(这步可以省略)
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<!--fork 设置为true -->
<fork>true</fork>
</configuration>
</plugin>
</plugins>
</build>
第四步:修改Idea配置
1.打开 Settings –> Build-Execution-Deployment –> Compiler,将 Build project automatically.勾上。
2.点击 Help –> Find Action..,或使用快捷键 Ctrl+Shift+A来打开 Registry…,将其中的compiler.automake.allow.when.app.running勾上
第五步:重启项目,然后再修改模板文件或静态资源文件,就可以热部署了