从零开始学SpringBoot2.x(07-SpringBoot整合视图技术:Thymeleaf篇)

在上一篇文章“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

 

 


欢迎关注我的个人公众号“笑笑是一个码农”,第一时间获取最新文章。

您的关注,就是支持我持续写作的最大动力!

还可以免费领取前后端全站学习视频资料呦~

个人微信号,如需添加微信,请备注来源,因为妈妈从小就告诉我不要随便跟陌生人聊天!(嘿嘿~)

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值