0%

thymeleaf添加LEGACYHTML5松校验出错

错误信息:[Cannot perform conversion to XML from legacy HTML:]

详细信息: Cannot perform conversion to XML from legacy HTML: The nekoHTML library is not in classpath. nekoHTML 1.9.15 or newer is required for processing templates in “LEGACYHTML5” mode [http://nekohtml.sourceforge.net]. Maven spec: “net.sourceforge.nekohtml::nekohtml::1.9.15”. IMPORTANT: DO NOT use versions of nekoHTML older than 1.9.15.

解决办法:
添加依赖
1
2
3
4
5
6
7
8
<dependency>

<groupId>net.sourceforge.nekohtml</groupId>

<artifactId>nekohtml</artifactId>

<version>1.9.15</version>
</dependency>

在使用springboot中,如果使用thymeleaf作为模板文件,则要求HTML格式必须为严格的html5格式,必须有结束标签,否则会报错!但是在application.properties中增加spring.thymeleaf.mode =LEGACYHTML5后运行仍然报错。

添加上面的依赖即可解决