1. 程式人生 > >解決thymeleaf嚴格html5校驗的方法

解決thymeleaf嚴格html5校驗的方法

用的是springboot加thyemleaf做靜態模板。

然後會有個很煩的東西,就這個靜態模板對html的格式非常嚴格,導致很多框架的格式都用不了,然後這裡有個解除的方法:

1.在pom中新增依賴:

<dependency> 
    <groupId>net.sourceforge.nekohtml</groupId>                 
    <artifactId>nekohtml</artifactId> 
    <version>1.9.21</version> 
</dependency> 

 

2.在properties裡面新增下面的設定

spring.thymeleaf.mode=LEGACYHTML5