如JSP、Velocity、Freemarker、Thymeleaf

SpringBoot推荐的Thymeleaf;语法更简单,功能更强大;

一、引入thymeleaf

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring‐boot‐starter‐thymeleaf</artifactId> 2.1.6
</dependency>
切换thymeleaf版本
<properties>
<thymeleaf.version>3.0.9.RELEASE</thymeleaf.version>
<!‐‐ 布局功能的支持程序 thymeleaf3主程序 layout2以上版本 ‐‐> <!‐‐ thymeleaf2 layout1‐‐>
<thymeleaf‐layout‐dialect.version>2.2.2</thymeleaf‐layout‐dialect.version>
</properties>

二、Thymeleaf使用

@ConfigurationProperties(prefix  =  "spring.thymeleaf")
public class ThymeleafProperties { private static final Charset DEFAULT_ENCODING = Charset.forName("UTF‐8"); private static final MimeType DEFAULT_CONTENT_TYPE = MimeType.valueOf("text/html"); public static final String DEFAULT_PREFIX = "classpath:/templates/";
public static final String DEFAULT_SUFFIX = ".html";
//

只要我们把HTML页面放在classpath:/templates/,thymeleaf就能自动渲染;

1、导入thymeleaf的名称空间

<html  lang="en"  xmlns:th="http://www.thymeleaf.org">

2、使用thymeleaf语法;

    <!DOCTYPE  html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF‐8">
<title>Title</title>
</head>
<body>
<h1>成功!</h1>
<!‐‐th:text 将div里面的文本内容设置为 ‐‐>
<div th:text="${hello}">这是显示欢迎信息</div>
</body>
</html>

、语法规则

1)、th:text;改变当前元素里面的文本内容;

th:任意html属性;来替换原生属性的值

2)、表达式?

    Simple  expressions:(表达式语法)
========================================================================================
1.Variable Expressions: ${...}:获取变量值;OGNL;
1)、获取对象的属性、调用方法
2)、使用内置的基本对象: #vars: the context variables.
#locale : the context locale.
#request : (only in Web Contexts) the HttpServletRequest object.
#response : (only in Web Contexts) the HttpServletResponse object.
#session : (only in Web Contexts) the HttpSession object.
#servletContext : (only in Web Contexts) the ServletContext object. 12
${session.foo}
3)、内置的一些工具对象:
#execInfo : information about the template being processed.
#messages : methods for obtaining externalized messages inside variables expressions, in the same way as they would be obtained using #{…} syntax.
#uris : methods for escaping parts of URLs/URIs
#conversions : methods for executing the configured conversion service (if any).
#dates : methods for java.util.Date objects: formatting, component extraction, etc.
#calendars : analogous to #dates , but for java.util.Calendar objects.
#numbers : methods for formatting numeric objects.
#strings : methods for String objects: contains, startsWith, prepending/appending, etc.
#objects : methods for objects in general.
#bools : methods for boolean evaluation.
#arrays : methods for arrays.
#lists : methods for lists.
#sets : methods for sets.
#maps : methods for maps.
#aggregates : methods for creating aggregates on arrays or collections.
#ids : methods for dealing with id attributes that might be repeated (for example, as a result of an iteration).
========================================================================================== 2.Selection Variable Expressions: *{...}:选择表达式:和${}在功能上是一样;
补充:配合 th:object="${session.user}:
<div th:object="${session.user}">
<p>Name: <span th:text="*{firstName}">Sebastian</span>.</p>
<p>Surname: <span th:text="*{lastName}">Pepper</span>.</p>
<p>Nationality: <span th:text="*{nationality}">Saturn</span>.</p>
</div> 39
Message Expressions: #{...}:获取国际化内容
Link URL Expressions: @{...}:定义URL;
@{/order/process(execId=${execId},execType='FAST')}
Fragment Expressions: ~{...}:片段引用表达式
<div th:insert="~{commons :: main}">...</div> 45
Literals(字面量)
Text literals: 'one text' , 'Another one!' ,… 48 Number literals: 0 , 34 , 3.0 , 12.3 ,…
Boolean literals: true , false
Null literal: null
Literal tokens: one , sometext , main ,…
Text operations:(文本操作)
String concatenation: +
Literal substitutions: |The name is ${name}|
Arithmetic operations:(数学运算) Binary operators: + , ‐ , * , / , % Minus sign (unary operator): ‐
Boolean operations:(布尔运算)
Binary operators: and , or
Boolean negation (unary operator): ! , not
Comparisons and equality:(比较运算)
Comparators: > , < , >= , <= ( gt , lt , ge , le )
Equality operators: == , != ( eq , ne )
Conditional operators:条件运算(三元运算符)
If‐then: (if) ? (then)
If‐then‐else: (if) ? (then) : (else)
Default: (value) ?: (defaultvalue)
Special tokens:
No‐Operation: _

最新文章

  1. 如何对tableview进行自定义多选
  2. Git-windows安装包
  3. 发布ASP.NET Core程序到Linux生产环境
  4. javascript滚动条之ScrollBar.js
  5. C++中复制构造函数与重载赋值操作符总结
  6. Android(java)学习笔记146:Bundle和Intent类使用和交互
  7. DataGrid( 数据表格) 组件[9]
  8. 商业模式画布及应用 - MBA智库文档
  9. Thrift搭建分布式微服务1
  10. BAPI_GOODSMVT_CREATE 移动类型201 CODE = &#39;03&#39; 代码
  11. AndroidGradle --多渠道打包配置(转发)
  12. ROSCon 2016视频和幻灯片发布 ROS机器人操作系统重要参考资料
  13. 嵌入式Linux系统的构成和启动过程
  14. 按固定元素数目分割数组- perl,python
  15. 【重磅干货整理】机器学习(Machine Learning)与深度学习(Deep Learning)资料汇总
  16. 监控hdfs 块迁移数量脚本及 metasave 日志内容详解
  17. JAVAEE——SSH项目实战01:SVN介绍、eclipse插件安装和使用方法
  18. Promise is rejected: Error: 2 UNKNOWN: error starting container: API error (404): {&quot;message&quot;:&quot;network build-blockchain-insurance-app_default not found&quot;}出错的解决方案
  19. notepad++一键运行python
  20. Atitit 软件体系的进化,是否需要一个处理中心

热门文章

  1. COUNT(*) vs COUNT(col)
  2. 在一个shell中查看管理 任务(前台和后台)/工作jobs 的命令
  3. JSON基础,简单介绍
  4. servlet过滤器Filter使用之DelegatingFilterProxy类
  5. MM理论
  6. EasyUI选项卡避免重复打开
  7. pandas 入门(2)
  8. vue—两个数组,去重相同项
  9. linux系统中的基础监控(硬盘,内存,系统负载,CPU,网络等)
  10. jdk与eclipse安装注意事项