在上一篇文章“SpringBoot整合视图技术:Freemarker篇”,与大家分享了SpringBoot应用中如何使用Freemarker模板,今天与大家分享怎么样使用Thymeleaf模板。其实过程基本都差不多,我也就不过多废话咯,直接开整!
1、在pom.xml文件中添加Thymeleaf依赖,如下:
<dependencies>
<!-- web组件 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!-- thymeleaf组件 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
</dependencies>
2、修改application.yml配置文件,如下:
spring:
thymeleaf:
enabled: true
cache: false #开发环境关闭缓存,生成环境建议开启缓存
mode: HTML
encoding: UTF-8
prefix: classpath:/templates/
suffix: .html
server:
port: 80
3、在resources目录下新建templates目录,并在该目录下新建我们的测试页面index.html,其内容如下:
<!doctype html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Thymeleaf测试</title>
</head>
<body>
<h1 th:text="${username}">Thymeleaf 测试</h1>
</body>
</html>
注意:在html标签中要添加thymeleaf命名空间
xmlns:th="http://www.thymeleaf.org
我有一次就是忘记添加这个,找了好久才找到问题所在,这一步也比较容易忘记,特此在这里稍作强调!
4、编写用于测试的控制器ThymeleafController,如下:
/**
* @Description Thymeleaf测试
* @Auther: 笑笑是一个码农
* @Date: 19:42 2019/11/10
*/
@Controller
public class ThymeleafController {
private static final String INDEX_PAGE = "index";
@GetMapping(value = "/index")
public String index(Map<String, String> map){
map.put("username","笑笑是一个码农");
return INDEX_PAGE;
}
}
5、最终工程目录如下:
6、启动我们的SpringBoot应用,访问http://localhost/index,如下:
测试成功!
Thymeleaf语法大家可以去官方文档中看看,在这里我就不过多介绍啦,官网链接:https://www.thymeleaf.org/
源码地址:
https://github.com/devilyang123/SpringBoot-Learning/tree/master/springboot-thymeleaf
欢迎关注我的个人公众号“笑笑是一个码农”,第一时间获取最新文章。
您的关注,就是支持我持续写作的最大动力!
还可以免费领取前后端全站学习视频资料呦~
个人微信号,如需添加微信,请备注来源,因为妈妈从小就告诉我不要随便跟陌生人聊天!(嘿嘿~)