欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

解决thymeleaf严格html校验的方法

程序员文章站 2022-03-02 19:01:25
...

今天在使用springboot和thymeleaf写页面的时候,thymeleaf对于页面的格式要求过于严格,导致我差点没有改页面改的心态爆炸

所以特地找了解处校验的方法

首先在pom文件中添加

<!-- https://mvnrepository.com/artifact/net.sourceforge.nekohtml/nekohtml -->
<dependency>
    <groupId>net.sourceforge.nekohtml</groupId>
    <artifactId>nekohtml</artifactId>
    <version>1.9.22</version>
</dependency>

然后在yml文件中添加

spring:
  thymeleaf:
      mode: LEGACYHTML5