首页> Java> java教程> 正文

SpringBoot引入Thymeleaf的方法介绍(代码)

不言
发布: 2019-04-04 10:15:08
转载
2931 人浏览过

本篇文章给大家带来的内容是关于SpringBoot引入Thymeleaf的方法介绍(代码),有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。

1、Thymeleaf简介

Thymeleaf是个XML/XHTML/HTML5模板引擎,可以用于Web与非Web应用
Thymeleaf的主要目标在于提供一种可被浏览器正确显示的、格式良好的模板创建方式,因此也可以用作静态建模,Thymeleaf的可扩展性也非常棒。你可以使用它定义自己的模板属性集合,这样就可以计算自定义表达式并使用自定义逻辑,Thymeleaf还可以作为模板引擎框架。

2、引入Thymeleaf

引入依赖

在maven(pom.xml)中直接引入:

 org.springframework.boot spring-boot-starter-thymeleaf   org.springframework.boot spring-boot-starter-web 
登录后复制
配置Thymeleaf

在application.yml配置Thymeleaf

server: port: 8000 spring: thymeleaf: cache: false # 关闭页面缓存 encoding: UTF-8 # 模板编码 prefix: classpath:/templates/ # 页面映射路径 suffix: .html # 试图后的后缀 mode: HTML5 # 模板模式 # 其他具体配置可参考org.springframework.boot.autoconfigure.thymeleaf.ThymeleafProperties # 上面的配置实际上就是注入该类的属性值
登录后复制
demo示例

创建IndexController

@Controller public class IndexController { // 返回视图页面 @RequestMapping("index") public String index(){ return "index"; } }
登录后复制

创建index.html

    Title 
Hello Thymeleaf!
登录后复制

创建TestController

@RestController public class TestController { // 返回整个页面 @RequestMapping("/test") public ModelAndView test(){ return new ModelAndView("test"); } }
登录后复制

创建test.html

    Title 
Hello Thymeleaf!
By: ModelAndView
登录后复制

3、测试结果
16900722-1f40c2ce7b2b3191.png

16900722-7a27d9bbfb9d0634.png

4、Thymeleaf基础语法及使用

引入标签

html标签里引入xmlns:th="http://www.thymeleaf.org"才能使用th:*这样的语法

引入URL

@{...}

例如:

3.获取变量

通过${}取值,对于JavaBean的话,使用变量名.属性名获取

4.字符串替换

 或者  注意:|…|中只能包含变量表达式${…},不能包含其他常量、条件表达式等
登录后复制

5.运算符

在表达式中可以使用各类算术运算符
例如 (+, -, *, /, %)
例如:th:with="isEven=(${stat.number} % 1 == 0)"
逻辑运算符 (>, <, <=,>=,==,!=)
需要注意的是使用<,>的时候需要转义

th:if="${stat.number} > 1" th:text="'Execution mode is ' + ( (${execMode} == 'dev')? 'Development' : 'Production')"
登录后复制

6.条件
if/unless th:if是该标签在满足条件的时候才会显示,unless是不成立时候才显示

Login
登录后复制

switch thymeleaf支持switch结构,默认属性(default)用*表示

User is an administrator

User is a manager

User is some other thing

登录后复制

7.循环

 Onions 2.41 yes 
登录后复制

8.Utilities

内置在Context中,可以直接通过#访问 #dates #calendars #numbers #strings arrays lists sets maps …
登录后复制

5.小结

本文讲述了如何在Spring Boot中引入模板引擎Thymeleaf以及Thymeleaf基础语法和实际使用

【相关推荐:Java视频教程

以上是SpringBoot引入Thymeleaf的方法介绍(代码)的详细内容。更多信息请关注PHP中文网其他相关文章!

相关标签:
来源:segmentfault.com
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!