错误信息:

1
org.xml.sax.SAXParseException: 元素类型 "meta" 必须由匹配的结束标记 "</meta>" 终止。

解决方案

增加依赖:

1
2
3
4
5
6
7
<!-- https://mvnrepository.com/artifact/net.sourceforge.nekohtml/nekohtml -->
<!-- 使thymeleaf不强制闭合标签 -->
<dependency>
<groupId>net.sourceforge.nekohtml</groupId>
<artifactId>nekohtml</artifactId>
<version>1.9.22</version>
</dependency>

参数配置:

1
2
#不强制关闭HTML标签
spring.thymeleaf.mode = LEGACYHTML5