使用gradle构建SpringBoot项目,由于html不是严格规范的编写,thymeleaf报这个错:
org.xml.sax.SAXParseException: The element type “meta” must be terminated by the matching end-tag “”
解决办法:
- 添加gradle依赖
dependencies {
...
implementation 'net.sourceforge.nekohtml:nekohtml:1.9.15'
...
}
- 修改属性文件
# THYMELEAF
spring.thymeleaf.encoding=UTF-8
# 热部署静态文件
spring.thymeleaf.cache=false
# 使用 非严格的HTML5标准
spring.thymeleaf.mode=LEGACYHTML5