首页 > 代码库 > thymeleaf模板对没有结束符的HTML5标签解析出错

thymeleaf模板对没有结束符的HTML5标签解析出错

thymeleaf 2.X 版本对HTML5要求比较严格,因此必须每个标签都有结束符。

现在有一种简单的方法可以避免这个问题:使用thymeleaf 3.0 版本!

具体操作如下:

pom.xml 文件的<properties>添加如下版本信息:

1 <properties>
2         <thymeleaf.version>3.0.0.RELEASE</thymeleaf.version>
3         <thymeleaf-layout-dialect.version>2.0.0</thymeleaf-layout-dialect.version>
4
5 </properties>

OK! 错误消失了!

thymeleaf模板对没有结束符的HTML5标签解析出错