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 热部署 (界面自动刷新 )

相关文章: