加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > Java > 正文

spring boot使用thymeleaf为模板的基本步骤介绍

发布时间:2020-12-14 20:06:58 所属栏目:Java 来源:网络整理
导读:前言 在开发过程中,使用模板引擎是很有必要的。jsp已经明显跟不上时代发展了,freemarker用的够够的?换thymeleaf试试吧。 springboot官方推荐的是freemarker和thymeleaf,而thymeleaf相对于freemarker更让人感觉强大的,是他可以动态替换标签内静态内容,

前言

在开发过程中,使用模板引擎是很有必要的。jsp已经明显跟不上时代发展了,freemarker用的够够的?换thymeleaf试试吧。

springboot官方推荐的是freemarker和thymeleaf,而thymeleaf相对于freemarker更让人感觉强大的,是他可以动态替换标签内静态内容,这样前端可以安心写页面,后台可以安心撸接口,只需要把变量替换一下即可,这种理念,不知道是VUE抄袭了thymeleaf还是thymeleaf抄袭了VUE,不过无所谓了 ,对于我们广大码奴来说,实用就好。

经过查阅资料,配置好后,现在将实现的过程分享给大家,下面话不多说了,来一起看看详细的介绍吧。

壹、pom引入

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

贰、application.properties添加thymeleaf配置

spring.thymeleaf.cache=false
spring.thymeleaf.check-template=true
spring.thymeleaf.check-template-location=true
spring.thymeleaf.content-type=text/html
spring.thymeleaf.enabled=true
spring.thymeleaf.encoding=utf-8
spring.thymeleaf.mode=HTML5
spring.thymeleaf.prefix=classpath:/templates/
spring.thymeleaf.suffix=.html

叁、编写html

<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml"
  xmlns:th="http://www.thymeleaf.org">
<head>
 <title>demo</title>
</head>
<body>
<p>这是第一段</p>
<p th:text="${textValue}">这是第二段</p>
</body>
</html>

肆、测试类

package com.mos.easyboot.admin.controller;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
@RequestMapping("demo")
public class DemoController {
 @RequestMapping("index")
 public String index(Model model){
 String textValue = "上士闻道,仅能行之;中士闻道,若存若亡;下士闻道,大笑之。" +
  "不笑不足以为道。" +
  "故建言有之:明道若昧;进道若退;夷道若K(lei);上德若谷,大白若辱,广德若不足,建德若偷,质真若渝;大方无隅;大器免成;大音希声;大象无形。" +
  "道隐无名。" +
  "夫唯道,善始且善成。";
 model.addAttribute("textValue",textValue);
 return "demo/demo";
 }
}

伍、页面效果

陆、数据渲染

VUE有个SSR(服务端渲染)的问题比较头疼,虽然也有解决方案(见我之前写的文章《 前后端分离Nuxt.js解决SEO问题 》),但总觉得还是让适合的技术做时候的业务比较好,而thymeleaf还是相当于在服务端渲染,查看页面源码如下:

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对编程小技巧的支持。

您可能感兴趣的文章:

  • spring boot使用thymeleaf模板的方法详解
  • spring boot使用thymeleaf跳转页面实例代码
  • springboot中thymeleaf模板使用详解
  • springboot用thymeleaf模板的paginate分页完整代码
  • Spring boot + thymeleaf 后端直接给onclick函数赋值的实现代码
  • SpringBoot中的Thymeleaf用法
  • Spring Boot利用Thymeleaf发送Email的方法教程
  • 详解spring Boot 集成 Thymeleaf模板引擎实例
  • spring boot+thymeleaf+bootstrap实现后台管理系统界面
  • spring boot(四)之thymeleaf使用详解

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读