SpringBoot的Thymeleaf模板引擎

目录

1、引入thymeleaf,导入依赖

2、在templates目录下面创建一个test.html文件

3、编写Controller

4、运行结果

5、底层原理

6、Thymeleaf的一些语法

7、目录结构


Thymeleaf模板引擎(就是做以前jsp的工作,页面+后端数据,做的工作跟jso一样,接收后端数据,放在前端代码中,显示在页面里面)

1、引入thymeleaf,导入依赖

SpringBoot的Thymeleaf模板引擎_第1张图片

        
            org.thymeleaf
            thymeleaf-spring5
        
        
            org.thymeleaf.extras
            thymeleaf-extras-java8time
        

2、在templates目录下面创建一个test.html文件

并且导入约束  xmlns:th="http://www.thymeleaf.org" 这样才能使用thymeleaf的语法




    
    Title





3、编写Controller

package com.zhou.controller;

import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RestController;

import java.util.Arrays;

@Controller
public class HelloController {
    @GetMapping("/hello")
    @ResponseBody
    public String hello(){
        return "hello,world";
    }
    
    @GetMapping("/test")
    public String test(Model model){
        model.addAttribute("msg", "hello springboot");
        // 制造出一个集合,然后用thymeleaf来遍历
        model.addAttribute("users", Arrays.asList("zhoujie", "xiaojie "));
        return "test";
    }
}

4、运行结果

SpringBoot的Thymeleaf模板引擎_第2张图片

5、底层原理

SpringBoot的Thymeleaf模板引擎_第3张图片6、Thymeleaf的一些语法

SpringBoot的Thymeleaf模板引擎_第4张图片

7、目录结构

SpringBoot的Thymeleaf模板引擎_第5张图片

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