SpringBoot集成Thymeleaf模板引擎,并实现页面实时刷新

SpringBoot集成Thymeleaf模板引擎,并实现页面实时刷新

  • SpringBoot集成Thymeleaf

1、创建一个controller

import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;

@Controller
public class MyController {

    @RequestMapping("/test")
    public String test(Model model){

        model.addAttribute("data","springboot集成Thymeleaf模板引擎");
        return "message";
    }
}

2、 在resources/templates目录下创建相应的html文件

     因为我在controller类里面返回的是message,所以我的文件名为message.html,使用Thymeleaf模板引擎需在html标签后添加xmlns:th=“http://www.thymeleaf.org”


<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <title>Titletitle>
head>
<body>
    <div th:text="${data}" >展示要显示的内容div>
    <div th:text="${data}" >展示要显示的内容div>
    <div th:text="${data}" >展示要显示的内容div>
    <div th:text="${data}" >展示要显示的内容div>

body>
html>

这样访问就可以拿到data的数据了,但是html页面改变现在刷新网页并不会跟着实时刷新.
SpringBoot集成Thymeleaf模板引擎,并实现页面实时刷新_第1张图片

  • 实现刷新网页实时刷新内容

1、在springboot主配置文件中加入spring.thymeleaf.cache=false,改内容是关闭Thymeleaf模板引擎的默认缓存

2、修改运行配置
SpringBoot集成Thymeleaf模板引擎,并实现页面实时刷新_第2张图片这样就可以在更改html文件后,刷新网页也能同步刷新了

你可能感兴趣的:(spring,boot,Ttymeleaf,java)