springboot模板引擎Thymeleaf

Thymeleaf

  1.导入依赖

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

  2.查看源码

  springboot模板引擎Thymeleaf

 

  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.基本语法:

 

上一篇:计算机毕业设计-基于SSM+Vue的公交路线管理系统-java公交管理系统代码


下一篇:SSM架构中,sql执行正常,数据库没有数据