错误信息:[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 | <dependency> |
在使用springboot中,如果使用thymeleaf作为模板文件,则要求HTML格式必须为严格的html5格式,必须有结束标签,否则会报错!但是在application.properties中增加spring.thymeleaf.mode =LEGACYHTML5后运行仍然报错。
添加上面的依赖即可解决