1. 程式人生 > >元素型別 "meta" 必須由匹配的結束標記 "" 終止

元素型別 "meta" 必須由匹配的結束標記 "" 終止

 來自:https://blog.csdn.net/Luck_ZZ/article/details/79361497

在Maven中新增依賴

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

在配置檔案application.properties中,對thymeleaf模板設定。

LEGACYHTML5需要搭配NekoHTML庫才可用,實現thymeleaf非嚴格檢查。

#thymeleaf  
spring.thymeleaf.encoding=UTF-8  
spring.thymeleaf.suffix=.html  
#預設嚴格檢查  
#spring.thymeleaf.mode=HTML5  
#非嚴格檢查  
spring.thymeleaf.mode=LEGACYHTML5