在spring中使用thymeleaf的时候,会对html进行严格的语法校验,实际并没有什么必要,如下是解决方法:
1 在pom.xml文件中添加如下依赖:
<dependency>
<groupId>net.sourceforge.nekohtml</groupId>
<artifactId>nekohtml</artifactId>
<version>1.9.21</version>
</dependency>
在application.properties中添加如下属性:
spring.thymeleaf.mode=LEGACYHTML5
网友评论