spring boot中使用thymeleaf

Posted bqh10086

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring boot中使用thymeleaf相关的知识,希望对你有一定的参考价值。

1.pom.xml引入thymeleaf

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

2.关闭缓存application.properties

spring.thymeleaf.cache=false

3.编写Controller类

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

import java.util.Map;

@Controller
@RequestMapping("/home")
public class HomeController 

    @RequestMapping(value = "/index")
    public String index(Map<String,Object> map) 
        map.put("userName","Bill Gates");
        return "index";
    

4.模板html

/resources/templates/index.html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8"></meta>
    <title>Title</title>
</head>
<body>
<h1>hello,<span th:text="$userName"></span></h1>
</body>
</html>

5.运行结果

访问地址:http://localhost:8090/home/index

hello,Bill Gates

以上是关于spring boot中使用thymeleaf的主要内容,如果未能解决你的问题,请参考以下文章

spring boot:Spring Boot中Redis的使用

Spring Boot:Spring Boot 中 MongoDB 的使用

Spring Boot:在Spring Boot中使用Mysql和JPA

Spring boot- Spring Boot特性2

使用 Spring Boot Maven 插件时,jar 文件中缺少 Spring Boot 应用程序中的资源

Spring boot中使用jwt