关于thymeleaf模板对html5 没有结束标签报错的解决方法?

thymeleaf对html5标签检查是比较严格的,所以才出现了此种问题,废话不多说,请看下面解决方法:

引入了thymeleaf模板之后,配置如下

#thymeleaf 模板配置
spring.thymeleaf.prefix=classpath:/templates/
spring.thymeleaf.suffix=.html
spring.thymeleaf.cache=false
spring.thymeleaf.check-template-location=true
#非严格检查
spring.thymeleaf.mode=LEGACYHTML5

将spring.thymeleaf.mode=HTML5(此行不写或这样写则表示默认严格检查)改成spring.thymeleaf.mode=LEGACYHTML5。

注意点:LEGACYHTML5必须是在引入了一个nekohtml依赖后,才起作用,所示必须依赖这个包,pom.xml如下:


		
			net.sourceforge.nekohtml
			nekohtml
			1.9.22
		

这样一来,再次访问页面,成功进入,就解决了这个问题,博主今天首次使用thymeleaf所遇到的坑,查阅了其他人的博客才得以解决。在此谢谢大家!

你可能感兴趣的:(thymeleaf)