spring-boot集成thymeleaf

步骤

1、引入依赖

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

2、添加配置

application.properties文件中添加

spring.thymeleaf.cache=false
spring.thymeleaf.enabled=true
spring.thymeleaf.encoding=UTF-8
spring.thymeleaf.mode=HTML5
spring.thymeleaf.prefix=classpath:/templates/
spring.thymeleaf.suffix=.html

测试

DemoController

@RequestMapping("/thymeleaf")
public String thymeleaf(Model model) {
    model.addAttribute("name", "potato");
    return "hello";
}

页面
templates/hello.html

<!DOCTYPE HTML>
<html xmlns:th="http://www.thymeleaf.org">
<head>
    <title>hello</title>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
<p th:text="'hello:'+${name}" ></p>
</body>
</html>

访问链接查看结果

http://localhost:8080/demo/thymeleaf

猜你喜欢

转载自blog.csdn.net/potatobeancox55555/article/details/80574779