Java教程

springboot模板引擎Thymeleaf

本文主要是介绍springboot模板引擎Thymeleaf,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

Thymeleaf

  1.导入依赖

<dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>

  2.查看源码

  

 

  thymeleaf的html都写在resources/templates下

  3.测试前端代码

  注意添加命名空间

 xmlns:th="http://www.thymeleaf.org"
<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
<h1>测试页面</h1>
<div th:text="${msg}"></div>

</body>
</html>

  4.后台请求代码

package com.chen.boot.controller;

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

@Controller
public class TestController {
    @RequestMapping("/test")
    public String test(Model model){
        model.addAttribute("msg","success");
        return "test";
    }

}

  5.基本语法:

 

这篇关于springboot模板引擎Thymeleaf的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!