SpringBoot集成Thymeleaf模版引擎

35次阅读

共计 964 个字符,预计需要花费 3 分钟才能阅读完成。

一、前言

  1. Thymeleaf 是一个优秀的、面向 Java 的 XML、HTML/HTML5 页面模板,具有丰富的标签语言和函数。因此,在使用 Spring Boot 框架进行页面设计时,一般都会选择 Thymeleaf 模板。
  2. 类似 thymeleaf 的模版还有 freemarker,推荐使用 thymeleaf, 前后端分离。

二、springboot 集成 Thymeleaf 模版引擎

  1. pom.xml 引入依赖

           <dependency>
               <groupId>org.springframework.boot</groupId>
               <artifactId>spring-boot-starter-thymeleaf</artifactId>
           </dependency>
  2. application.properties 中配置:

    ## 去除 thymeleaf 的 html 严格校验
    spring.thymeleaf.mode=LEGACYHTML5
    #设定 thymeleaf 文件路径 默认为 src/main/resources/templates
    spring.freemarker.template-loader-path=classpath:/templates
  3. 在 controller 中书写相关代码,注意 controller 层中 注解使用 @controller,不要是用 @RestController, 否则就会出现页面返回字符串而不是正常的 html 页面。
  4. 模版 html 页面中,也是需要引入 thymeleaf:

    <html xmlns:th="http://www.thymeleaf.org">
  5. 最后启动项目即可

三、需要注意的问题

  1. 通过以上配置后,我们发现,有时候自己写的 html 页面会无法解析,这种情况就有可能是因为使用 springboot 的 thymeleaf 模板时,默认会对 HTML 进行严格的检查, 导致当标签没有闭合时就会通不过。nekohtml 这个依赖可以解决这一问题。
  2. 为了解决 html 严格校验报错的问题,可以在 pom.xml 增添依赖 nekohtml

           <dependency>
               <groupId>net.sourceforge.nekohtml</groupId>
               <artifactId>nekohtml</artifactId>
               <version>1.9.15</version>
           </dependency>

正文完
 0