设置不严格校验html语法
程序员文章站
2022-02-12 21:22:01
...
平常在使用thymeleaf时候,不知道大家有没有遇到这样的问题
如果
<input type="submit" />
缺少“/”,那么就会报错,这是由于thymeleaf启用了严格的语法检查。
解决办法:
1.在pom.xml中添加
<!--启用不严格检查html-->
<dependency>
<groupId>net.sourceforge.nekohtml</groupId>
<artifactId>nekohtml</artifactId>
<version>1.9.22</version>
</dependency>
2.在application.properties中添加
#thymeleaf
spring.thymeleaf.mode=LEGACYHTML5
spring.thymeleaf.encoding=UTF-8
spring.thymeleaf.servlet.content-type=text/html
spring.thymeleaf.cache=false
推荐阅读
-
为什么设置的margin-top不不起作用_html/css_WEB-ITnose
-
div+css总结?FF下div不设置…_html/css_WEB-ITnose
-
不设置基本宽高,background-image设置的图片不会显示吗_html/css_WEB-ITnose
-
不设置基本宽高,background-image设置的图片不会显示吗_html/css_WEB-ITnose
-
html图片不滚动怎么设置
-
根据滚动条滚动距离设置不固定div 在线等答复!谢谢。_html/css_WEB-ITnose
-
如何设置div滚动条不滚动的问题_html/css_WEB-ITnose
-
html页面中meta的作用以及页面的缓存与不缓存设置的解析
-
html页面中meta的作用以及页面的缓存与不缓存设置的解析
-
如何设置div滚动条不滚动的问题_html/css_WEB-ITnose