springboot集成thymeleaf(不重启刷新html)

springboot集成thymeleaf完整配置
1、pom文件新增spring-boot-starter-thymeleaf依赖

        <dependency>
            <groupId>org.springframework.bootgroupId>
            <artifactId>spring-boot-starter-thymeleafartifactId>
        dependency>

2、application.properties新增thymeleaf配置

#######thymeleaf#########
# 模板配置
# 这个开发配置为false,避免改了模板还要重启服务器
spring.thymeleaf.cache=false
# 这个是配置模板路径的,默认就是templates,可不用配置
spring.thymeleaf.prefix=classpath:/templates/
# 这个可以不配置,检查模板位置
spring.thymeleaf.check-template-location=true
# 下面3个不做解释了,可以不配置
spring.thymeleaf.suffix=.html
spring.thymeleaf.encoding=UTF-8
spring.thymeleaf.servlet.content-type=text/html

# 模板的模式
spring.thymeleaf.mode=HTML5
#######thymeleaf#########

3、新建controller

@RequestMapping("/test")
    public String test(){
        List<TBookinfo> records = testService.getRecords();
        records.stream().forEach(r -> System.out.println(r.getAuthor()));
        return "index";
    }

4、在resource/template下新建index.html


<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Titletitle>
head>
<body>
hddyddytdy  sdfdfsdfs  sssss
body>
html>

这样就已经配置好了。但这时仍然有个问题:修改html文件需要重启才能生效,这样大大降低了开发效率。经过研究进行如下设置后即可无需重启服务器让文件生效

1、在application.propertis中新增如下配置

# 这个开发配置为false,避免改了模板还要重启服务器
spring.thymeleaf.cache=false

2、在工程中引入Spring Boot Dev Tools

<dependency>
    <groupId>org.springframework.bootgroupId>
    <artifactId>spring-boot-devtoolsartifactId>
    <optional>trueoptional>
dependency>

3、在idea中intellij idea-perference-Build,Execution,Deployment-Complier中勾上Build project automatically
springboot集成thymeleaf(不重启刷新html)_第1张图片
4、在idea中按command+option+shift+/选择Registry,勾选compiler.automake.allow.when.app.running
springboot集成thymeleaf(不重启刷新html)_第2张图片

经过以上4个步骤即可实现不重启服务更新页面

你可能感兴趣的:(个人笔记)