当前位置: 代码迷 >> 综合 >> SpringBoot + thymeleaf 热部署 (界面自动刷新 )
  详细解决方案

SpringBoot + thymeleaf 热部署 (界面自动刷新 )

热度:80   发布时间:2023-10-08 19:35:24.0

1. pom.xml 加入以下内容

            <!-- 项目热部署 --><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-devtools</artifactId><optional>true</optional> <!-- 表示依赖不会传递 --><scope>true</scope></dependency><plugin><groupId>org.springframework.boot</groupId><artifactId>spring-boot-maven-plugin</artifactId><configuration><fork>true</fork> <!-- 如果没有该配置,devtools不会生效 --></configuration></plugin>

2. 设置idea相关

SpringBoot + thymeleaf 热部署 (界面自动刷新 )

2.快捷键  ctrl + shift + alt + / ,选择Registry,勾上 Compiler autoMake allow when app running

SpringBoot + thymeleaf 热部署 (界面自动刷新 )

SpringBoot + thymeleaf 热部署 (界面自动刷新 )