一、前言
- Thymeleaf 是一个优秀的、面向Java 的XML、HTML/HTML5 页面模板,具有丰富的标签语言和函数。因此,在使用Spring Boot 框架进行页面设计时, 一般都会选择Thymeleaf 模板。
- 类似thymeleaf的模版还有freemarker,推荐使用thymeleaf,前后端分离。
二、springboot集成Thymeleaf模版引擎
-
pom.xml引入依赖
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> </dependency>
-
application.properties中配置:
##去除thymeleaf的html严格校验 spring.thymeleaf.mode=LEGACYHTML5 #设定thymeleaf文件路径 默认为src/main/resources/templates spring.freemarker.template-loader-path=classpath:/templates
- 在controller中书写相关代码,注意controller层中注解使用@controller,不要是用@RestController,否则就会出现页面返回字符串而不是正常的html页面。
-
模版html页面中,也是需要引入thymeleaf:
<html xmlns:th="http://www.thymeleaf.org">
- 最后启动项目即可
三、需要注意的问题
- 通过以上配置后,我们发现,有时候自己写的html页面会无法解析,这种情况就有可能是因为使用springboot的thymeleaf模板时,默认会对HTML进行严格的检查,导致当标签没有闭合时就会通不过。nekohtml这个依赖可以解决这一问题。
-
为了解决html严格校验报错的问题,可以在pom.xml增添依赖nekohtml
<dependency> <groupId>net.sourceforge.nekohtml</groupId> <artifactId>nekohtml</artifactId> <version>1.9.15</version> </dependency>
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。