springboot项目引入thymeleaf模板时,默认thymeleaf模板对html5标签是严格检查的。要实现非严格检查
1. 在项目中加NekoHTML库
在Maven中添加依赖
- <dependency>
- <groupId>net.sourceforge.nekohtml</groupId>
- <artifactId>nekohtml</artifactId>
- <version>1.9.22</version>
- </dependency>
2.更改thymeleaf设置
在配置文件application.properties中,对thymeleaf模板设置。
LEGACYHTML5需要搭配NekoHTML库才可用,实现thymeleaf非严格检查。
- #thymeleaf
- spring.thymeleaf.encoding=UTF-8
- spring.thymeleaf.suffix=.html
- #默认严格检查
- #spring.thymeleaf.mode=HTML5
- #非严格检查
- spring.thymeleaf.mode=LEGACYHTML5
原文地址:https://www.cnblogs.com/y-blog/p/8920388.html
时间: 2024-11-06 21:06:31