java

关注公众号 jb51net

关闭
首页 > 软件编程 > java > springboot 热加载thymeleaf

IDEA中springboot的热加载thymeleaf静态html页面的方法

作者:li_zehao

这篇文章主要介绍了IDEA中springboot的热加载thymeleaf静态html页面的方法,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下

1.首先加入开发工具依赖

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-devtools</artifactId>
    <optional>true</optional>
</dependency>

2.其次在build maven插件中开启热部署

<build>
    <plugins>
        <plugin>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-maven-plugin</artifactId>
            <configuration>
                <fork>true</fork> #主要是这里,开启
            </configuration>
        </plugin>
    </plugins>
</build>

3.idea开启自动

4.勾选compiler.automake.allow.when.app.running

到此这篇关于IDEA中springboot的热加载thymeleaf静态html页面的文章就介绍到这了,更多相关springboot 热加载thymeleaf内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:
阅读全文