Thymeleaf中有自己的表达式,和自己的语法,可以把数据取出来后再进行判断,遍历等操作,另外它还封装了strings,dates....对象,可以利用这些对象对已有的数据进行简单的逻辑处理;

1.pom.xml

  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  2. <modelVersion>4.0.0</modelVersion>
  3. <parent>
  4. <groupId>org.springframework.boot</groupId>
  5. <artifactId>spring-boot-starter-parent</artifactId>
  6. <version>1.5.10.RELEASE</version>
  7. </parent>
  8. <groupId>com.mr.li</groupId>
  9. <artifactId>springboot_005</artifactId>
  10. <version>0.0.1-SNAPSHOT</version>
  11.  
  12. <!-- 修改jdk版本 -->
  13. <properties>
  14. <java.version>1.7</java.version>
  15. <!-- 将thymeleaf的版本升级一下,好处是:不会限制自动生成的html中编码标签结束没有结束符的错误 -->
  16. <thymeleaf.version>3.0.2.RELEASE</thymeleaf.version>
  17. <thymeleaf-layout-dialect.version>2.0.4</thymeleaf-layout-dialect.version>
  18. </properties>
  19.  
  20. <dependencies>
  21. <!-- springBoot引入web启动器 -->
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-web</artifactId>
  25. </dependency>
  26. <!-- springBoot引入thymeleaf视图模板启动器 -->
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  30. </dependency>
  31. </dependencies>
  32. </project>

2.启动类

  1. package com.mr.li;
  2.  
  3. import org.springframework.boot.SpringApplication;
  4. import org.springframework.boot.autoconfigure.SpringBootApplication;
  5.  
  6. @SpringBootApplication
  7. public class App {
  8.  
  9. public static void main(String[] args) {
  10. SpringApplication.run(App.class, args);
  11. }
  12. }

3.MyController:各个方法的演示,方法的返回值都是对应的html名称

  1. package com.mr.li.controller;
  2.  
  3. import java.util.ArrayList;
  4. import java.util.Date;
  5. import java.util.HashMap;
  6. import java.util.List;
  7. import java.util.Map;
  8.  
  9. import javax.servlet.ServletContext;
  10. import javax.servlet.http.HttpServletRequest;
  11. import javax.servlet.http.HttpSession;
  12.  
  13. import org.springframework.stereotype.Controller;
  14. import org.springframework.ui.Model;
  15. import org.springframework.web.bind.annotation.RequestMapping;
  16.  
  17. import com.mr.li.pojo.User;
  18.  
  19. @Controller
  20. public class MyController {
  21.  
  22. /**
  23. * 使用thymeleaf获取字符串:str是html的名字。
  24. * 将字符串添加到model属性中,而model对象是springboot封装过的,在这里用于HTML中获取。
  25. * @param model
  26. * @return
  27. */
  28. @RequestMapping("/strs")
  29. public String show1(Model model) {
  30. model.addAttribute("str", "heLLLlo world");
  31. return "str";
  32. }
  33.  
  34. /**
  35. * 演示:在html中遍历取出list中的内容
  36. * @param model
  37. * @return
  38. */
  39. @RequestMapping("/lists")
  40. public String show2(Model model) {
  41. List<User> list = new ArrayList<User>();
  42. list.add(new User(1, "小明", 15));
  43. list.add(new User(2, "小刚", 16));
  44. list.add(new User(3, "小丽", 14));
  45. model.addAttribute("list", list);
  46. return "list";
  47. }
  48.  
  49. /**
  50. * 演示map:在html中取出map操作
  51. * @param model
  52. * @return
  53. */
  54. @RequestMapping("/maps")
  55. public String show3(Model model) {
  56. Map<String, User> map = new HashMap<String, User>();
  57. map.put("user1", new User(1, "张三", 15));
  58. map.put("user2", new User(2, "李四", 16));
  59. map.put("user3", new User(3, "王五", 17));
  60. model.addAttribute("map", map);
  61. return "map";
  62. }
  63.  
  64. /**
  65. * 演示使用thymeleaf在html中操作date类型
  66. * @param model
  67. * @return
  68. */
  69. @RequestMapping("/dates")
  70. public String show4(Model model) {
  71. model.addAttribute("date", new Date());
  72. return "date";
  73. }
  74.  
  75. /**
  76. * 演示作用域:在html中使用作用域
  77. * @param request
  78. * @param model
  79. * @return
  80. */
  81. @RequestMapping("/scopes")
  82. public String show5(HttpServletRequest request, Model model) {
  83. request.setAttribute("req", "my is request!!!");
  84. HttpSession session = request.getSession();
  85. session.setAttribute("session" , "my is httpsession");
  86. ServletContext context = request.getSession().getServletContext();
  87. context.setAttribute("application", "my is application!!!");
  88. return "scope";
  89. }
  90. /**
  91. * 演示在html判断数据
  92. * @param model
  93. * @return
  94. */
  95. @RequestMapping("/decides")
  96. public String show6(Model model) {
  97. model.addAttribute("id", 2);
  98. model.addAttribute("sex", "男");
  99. return "decide";
  100. }
  101. }

4.实体类,便于生成数据源,方便演示

  1. package com.mr.li.pojo;
  2.  
  3. public class User {
  4.  
  5. private int id;
  6. private String name;
  7. private int age;
  8. public int getId() {
  9. return id;
  10. }
  11. public void setId(int id) {
  12. this.id = id;
  13. }
  14. public String getName() {
  15. return name;
  16. }
  17. public void setName(String name) {
  18. this.name = name;
  19. }
  20. public int getAge() {
  21. return age;
  22. }
  23. public void setAge(int age) {
  24. this.age = age;
  25. }
  26. public User() {
  27. // TODO Auto-generated constructor stub
  28. }
  29. public User(int id, String name, int age) {
  30. super();
  31. this.id = id;
  32. this.name = name;
  33. this.age = age;
  34. }
  35.  
  36. }

5.date.html 演示日期操作

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8"/>
  5. <title>使用Thymeleaf演示Date类型</title>
  6. </head>
  7. <body>
  8. <!-- date值是controller中model对象的属性key名称 -->
  9. 1.自动解析输出当前日期格式,为浏览器默认格式:
  10. <span th:text="${#dates.format(date)}"></span>
  11. <hr/>
  12. 2.自定义解析输出当前日期格式yyy/MM/dd:
  13. <span th:text="${#dates.format(date, 'yyy/MM/dd')}"></span>
  14. <hr/>
  15. 3.输出当前年:
  16. <span th:text="${#dates.year(date)}"></span>
  17. <hr/>
  18. 4.输出当前月:
  19. <span th:text="${#dates.month(date)}"></span>
  20. <hr/>
  21. 5.输出当前日:
  22. <span th:text="${#dates.day(date)}"></span>
  23. <hr/>
  24. </body>
  25. </html>

访问url: http://localhost:8080/dates

6.decide.html 用Thymeleaf演示判断

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>使用Thymeleaf演示if、switch判断操作</title>
  6. </head>
  7. <body>
  8. <span th:if = "${sex} == '男'">
  9. 此人性别:男
  10. </span>
  11. <span th:if = "${sex} == '女'">
  12. 此人性别:女
  13. </span>
  14. <div th:switch="${id}">
  15. <span th:case="1">此人id为:1</span>
  16. <span th:case="2">此人id为:2</span>
  17. <span th:case="3">此人id为:3</span>
  18. </div>
  19. </body>
  20. </html>

url: http://localhost:8080/decides

7.list.html list处理数据演示

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8"/>
  5. <title>使用Thymeleaf演示List类型</title>
  6. </head>
  7. <body>
  8. <table border="1">
  9. <tr>
  10. <th>ID</th>
  11. <th>名称</th>
  12. <th>年龄</th>
  13. <th>索引</th>
  14. <th>计数</th>
  15. <th>集合大小</th>
  16. <th>计数是否为偶数</th>
  17. <th>计数是否为奇数</th>
  18. <th>当前是否为集合中的第一个元素</th>
  19. <th>当前是否为集合中最后一个元素</th>
  20. </tr>
  21. <!-- u:是当前遍历的对象,var:是Thymeleaf帮我们封装的当前对象 -->
  22. <tr th:each="u,var : ${list}">
  23. <td th:text="${u.id}"></td>
  24. <td th:text="${u.name}"></td>
  25. <td th:text="${u.age}"></td>
  26. <td th:text="${var.index}"></td>
  27. <td th:text="${var.count}"></td>
  28. <td th:text="${var.size}"></td>
  29. <td th:text="${var.even}"></td>
  30. <td th:text="${var.odd}"></td>
  31. <td th:text="${var.first}"></td>
  32. <td th:text="${var.last}"></td>
  33. </tr>
  34. </table>
  35. </body>
  36. </html>

url : http://localhost:8080/lists

8.map.html map处理数据演示

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8"/>
  5. <title>使用Thymeleaf演示Map类型</title>
  6. </head>
  7. <body>
  8. <table border="1">
  9. <tr>
  10. <th>ID</th>
  11. <th>名称</th>
  12. <th>年龄</th>
  13. </tr>
  14. <!--遍历map方式一 -->
  15. <!-- <tr th:each="maps : ${map}">
  16. <td th:each="user : ${maps}" th:text="${user.value.id}"></td>
  17. <td th:each="user : ${maps}" th:text="${user.value.name}"></td>
  18. <td th:each="user : ${maps}" th:text="${user.value.age}"></td>
  19. </tr> -->
  20. <!-- 遍历map方式二:拿出map然后循环会拿出他的对象,输出每个对象,value为关键字 -->
  21. <tr th:each="user : ${map}">
  22. <td th:text="${user.value.id}"></td>
  23. <td th:text="${user.value.name}"></td>
  24. <td th:text="${user.value.age}"></td>
  25. </tr>
  26. </table>
  27. </body>
  28. </html>

url: http://localhost:8080/maps

9.str.html string类型处理数据演示

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8"/>
  5. <title>使用Thymeleaf演示String类型</title>
  6. </head>
  7. <body>
  8. 演示输出:
  9. <span th:text=" ${str}"></span>
  10. <hr/>
  11. 1.检查此字符串是否为空:
  12. <span th:text="${#strings.isEmpty(str)}"></span>
  13. <hr/>
  14. 2.检查此str字符串送是否包含“h”:
  15. <span th:text="${#strings.contains(str,'h')}"></span>
  16. <hr/>
  17. 3.检查str中的第一个字符是否为“b”:
  18. <span th:text="${#strings.startsWith(str,'b')}"></span>
  19. <hr/>
  20. 4.检查str中最后一个字符是否为“s”:
  21. <span th:text="${#strings.endsWith(str,'s')}"></span>
  22. <hr/>
  23. 5.输出str的长度:
  24. <span th:text="${#strings.length(str)}"></span>
  25. <hr/>
  26. 6.截取str中某段字符的内容,包头不包尾,若只有一个值则从此值往后直到结束:
  27. <span th:text="${#strings.substring(str,3,5)}"></span>
  28. <hr/>
  29. 7.输出此字符“o”的索引值:
  30. <span th:text="${#strings.indexOf(str,'o')}"></span>
  31. <hr/>
  32. 8.将str所有字符转为大写:
  33. <span th:text="${#strings.toUpperCase(str)}"></span>
  34. <hr/>
  35. 9.将str所有字符转为小写:
  36. <span th:text="${#strings.toLowerCase(str)}"></span>
  37. <hr/>
  38. </body>
  39. </html>

url: http://localhost:8080/strs

10.scope.html 作用域演示

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8"/>
  5. <title>使用Thymeleaf演示Request、HttpSession、Application(ServletContext)作用域类型</title>
  6. </head>
  7. <body>
  8. <!-- httpServletRequest对象是Thymeleaf提供的,方法也是,都不能错,req是controller中赋值时的key -->
  9. Request作用域的值获取,赋值在controller中:<span th:text="${#httpServletRequest.getAttribute('req')}"></span>
  10. <hr/>
  11. <!-- 第一个session是Thymeleaf提供的,第二个session是controller中赋值的key -->
  12. Session作用域获取值,赋值在controller中:<span th:text="${session.session}"></span>
  13. <hr/>
  14. <!-- 第一个application是Thymeleaf提供的,第二个application是controller中赋值的key -->
  15. Application作用域获取值,赋值在controller中:<span th:text="${application.application}"></span>
  16. </body>
  17. </html>

url: http://localhost:8080/scopes

项目结构:

关于url:

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Thymeleaf-URL</title>
  6. </head>
  7. <body>
  8. <a th:href="@{http://www.baidu.com}">绝对路径</a><br/>
  9. <a href="http://www.baidu.com">绝对路径2</a>
  10. <hr/>
  11. <!-- 此时回去找名为show的这个controller -->
  12. <a th:href="@{/show}">相对路径</a>
  13. <hr/>
  14. <a th:href="@{~/project2/resourcename}">相对于服务器的根</a>
  15. <hr/>
  16. <a th:href="@{/show(id=1,name=zhagnsan)}">相对路径-传参</a>
  17. <hr/>
  18. <a th:href="@{/path/{id}/show(id=1,name=zhagnsan)}">相对路径-传参-restful</a>
  19. </body>
  20. </html>

以上就是thymeleaf的简单应用

springboot整合视图层之Thymeleaf的更多相关文章

  1. springboot整合视图层之jsp

    在springboot中不推荐视图层使用jsp展示,但是人们以前已经习惯使用jsp,所以对jsp也有支持,但是是解耦性的.也就是说并没有像其他组件一样直接集成到启动器中,所以像jsp引擎之类的需要额外 ...

  2. springboot整合视图层之freemarker

    整合freemarker要求必须将视图文件放在 src/main/resources下的templates文件夹下,该文件夹是安全的不可直接访问的,必须由controller之类的接受请求类去跳转,因 ...

  3. Spring MVC视图层:thymeleaf vs. JSP

    本文对比了同一Spring MVC工程中相同页面(一个订阅表单)分别采用Thymeleaf和JSP(包括JSP.JSTL.Spring tag lib)两种方式的实现. 本文的所有代码来自一个可运行的 ...

  4. SpringBoot整合freemarker 引用基础

    原 ElasticSearch学习笔记Ⅲ - SpringBoot整合ES 新建一个SpringBoot项目.添加es的maven坐标如下: <dependency> <groupI ...

  5. springboot学习入门简易版四---springboot2.0静态资源访问及整合freemarker视图层

    2.4.4 SpringBoot静态资源访问(9) Springboot默认提供静态资源目录位置需放在classpath下,目录名需要符合如下规则 /static  /public  /resourc ...

  6. SpringBoot整合Jsp和Thymeleaf (附工程)

    前言 本篇文章主要讲述SpringBoot整合Jsp以及SpringBoot整合Thymeleaf,实现一个简单的用户增删改查示例工程.事先说明,有三个项目,两个是单独整合的,一个是将它们整合在一起的 ...

  7. 【Springboot】Springboot整合Thymeleaf模板引擎

    Thymeleaf Thymeleaf是跟Velocity.FreeMarker类似的模板引擎,它可以完全替代JSP,相较与其他的模板引擎,它主要有以下几个特点: 1. Thymeleaf在有网络和无 ...

  8. Springboot整合thymeleaf模板

    Thymeleaf是个XML/XHTML/HTML5模板引擎,可以用于Web与非Web应用. Thymeleaf的主要目标在于提供一种可被浏览器正确显示的.格式良好的模板创建方式,因此也可以用作静态建 ...

  9. SpringBoot:2.SpringBoot整合Thymeleaf模板引擎渲染web视图

    在Web开发过程中,Spring Boot可以通过@RestController来返回json数据,那如何渲染Web页面?Spring Boot提供了多种默认渲染html的模板引擎,主要有以下几种: ...

随机推荐

  1. Es6对象的扩展和Class类的基础知识笔记

    /*---------------------对象的扩展---------------------*/ //属性简写 ,属性名为变量名, 属性值为变量的值 export default functio ...

  2. 【层次聚类】python scipy实现

    层次聚类 原理 有一个讲得很清楚的博客:博客地址 主要用于:没有groundtruth,且不知道要分几类的情况 用scipy模块实现聚类 参考函数说明: pdist squareform linkag ...

  3. JSP Filters(过滤器)

    Filter是拦截Request请求的对象:在用户的请求访 问资源前处理ServletRequest以及ServletResponse,它可 用于日志记录.加解密.Session检查.图像文件保护 等 ...

  4. Nginx详解二十五:Nginx架构篇之Nginx常见的问题

    Nginx常见的问题 1.相同server_name多个虚拟主机优先级访问,是按读取文件的优先级来排序 在/opt/app/下准备3个code文件夹,下面放入3个html文件,里面的内容分别是code ...

  5. 在windows下Apache安装配置

    安装,从官网下载,安装即可.   配置遇到一些问题: 1.  the requested operation has failed 这是因为安装后的文件目录没有没有写的权限.通过安全设置安装目录的所有 ...

  6. xxl系列部署启动通用办法

    http://10.10.6.186:8080/xxl-job-admin # 编译mvn compile # 清理mvn clean # 打包mvn package # 先清理后编译mvn clea ...

  7. Junit4 IDEA测试学习一

    1.Junit4 下载 https://github.com/junit-team/junit4/releases 4.12 还需要还导入hamcrest-core-1.3.jar 2.IDEA Te ...

  8. SQL Server中Text和varchar(max) 区别

    SQL Server 2005之后版本:请使用 varchar(max).nvarchar(max) 和 varbinary(max) 数据类型,而不要使用 text.ntext 和 image 数据 ...

  9. CentOS下配置SFTP操作日志

    1.修改ssh的配置 vi /etc/ssh/sshd_config 在36行左右修改如下配置 Subsystem sftp /usr/libexec/openssh/sftp-server -l I ...

  10. IIS7 禁止目录运行脚本

    早晨看博客说有人被黑了:http://www.cnblogs.com/sanshi/p/3150639.html 看回复建议禁用上传目录的脚本运行权限 在IIS6上还是比较容易的,直接右键--属性,把 ...