springboot的thymeleaf模板问题springboot的thymeleaf模板问题

Posted y-blog

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot的thymeleaf模板问题springboot的thymeleaf模板问题相关的知识,希望对你有一定的参考价值。

springboot项目引入thymeleaf模板时,默认thymeleaf模板对html5标签是严格检查的。要实现非严格检查

1. 在项目中加NekoHTML库

在Maven中添加依赖

  1. <dependency>  
  2.     <groupId>net.sourceforge.nekohtml</groupId>  
  3.     <artifactId>nekohtml</artifactId>  
  4.     <version>1.9.22</version>  
  5. </dependency>  

2.更改thymeleaf设置

在配置文件application.properties中,对thymeleaf模板设置。

LEGACYHTML5需要搭配NekoHTML库才可用,实现thymeleaf非严格检查。

  1. #thymeleaf  
  2. spring.thymeleaf.encoding=UTF-8  
  3. spring.thymeleaf.suffix=.html  
  4. #默认严格检查  
  5. #spring.thymeleaf.mode=HTML5  
  6. #非严格检查  
  7. spring.thymeleaf.mode=LEGACYHTML5  

以上是关于springboot的thymeleaf模板问题springboot的thymeleaf模板问题的主要内容,如果未能解决你的问题,请参考以下文章

SpringBoot笔记(五)模板引擎thymeleaf和freemarker

springboot使用thymeleaf模板问题

SpringBoot 之Thymeleaf模板

在 Thymeleaf 模板中显示 Springboot 验证结果

springboot2.x——thymeleaf引擎模板

SpringBoot使用thymeleaf模板