最新文章专题视频专题问答1问答10问答100问答1000问答2000关键字专题1关键字专题50关键字专题500关键字专题1500TAG最新视频文章推荐1 推荐3 推荐5 推荐7 推荐9 推荐11 推荐13 推荐15 推荐17 推荐19 推荐21 推荐23 推荐25 推荐27 推荐29 推荐31 推荐33 推荐35 推荐37视频文章20视频文章30视频文章40视频文章50视频文章60 视频文章70视频文章80视频文章90视频文章100视频文章120视频文章140 视频2关键字专题关键字专题tag2tag3文章专题文章专题2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章专题3
当前位置: 首页 - 科技 - 知识百科 - 正文

解析springboot使用thymeleaf时报html没有结束标签

来源:动视网 责编:小采 时间:2020-11-27 15:34:09
文档

解析springboot使用thymeleaf时报html没有结束标签

解析springboot使用thymeleaf时报html没有结束标签:在使用springboot的过程中,如果使用thymeleaf作为模板文件,则要求HTML格式必须为严格的http://www.gxlcms.com/wiki/1118.html target=_blank
推荐度:
导读解析springboot使用thymeleaf时报html没有结束标签:在使用springboot的过程中,如果使用thymeleaf作为模板文件,则要求HTML格式必须为严格的http://www.gxlcms.com/wiki/1118.html target=_blank


在使用springboot的过程中,如果使用thymeleaf作为模板文件,则要求HTML格式必须为严格的http://www.gxlcms.com/wiki/1118.html" target="_blank">html5格式,必须有结束标签,否则会报错!解决办法如下:

1、你可以使用严格的标签,也就是每个标签都有结束标签,这种可能比较麻烦

2、在application.properties中增加spring.thymeleaf.mode=LEGACYHTML5,即声明thymeleaf使用非严 格的html。启动之后访问页面会报如下错误:

org.thymeleaf.exceptions.ConfigurationException: Cannot perform conversion to XML from legacy HTML: The nekoHTML library is not in classpath. nekoHTML 1.9.15 or newer is required for processing templates in "LEGACYHTML5" mode [http://nekohtml.sourceforge.net]. Maven spec: "net.sourceforge.nekohtml::nekohtml::1.9.15". IMPORTANT: DO NOT use versions of nekoHTML older than 1.9.15.
	at org.thymeleaf.templateparser.html.AbstractHtmlTemplateParser.parseTemplate(AbstractHtmlTemplateParser.java:90) ~[thymeleaf-2.1.5.RELEASE.jar:2.1.5.RELEASE]
	at org.thymeleaf.TemplateRepository.getTemplate(TemplateRepository.java:278) ~[thymeleaf-2.1.5.RELEASE.jar:2.1.5.RELEASE]
	at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1104) ~[thymeleaf-2.1.5.RELEASE.jar:2.1.5.RELEASE]
	at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1060) ~[thymeleaf-2.1.5.RELEASE.jar:2.1.5.RELEASE]

上面的异常已经说的很清楚了,需要依赖nekoHTML 1.9.15 or newer的版本。maven依赖如下

<dependency>

<groupId>net.sourceforge.nekohtml</groupId>

<artifactId>nekohtml</artifactId>

<version>1.9.22</version>

</dependency>

现在就可以正常访问了。

文档

解析springboot使用thymeleaf时报html没有结束标签

解析springboot使用thymeleaf时报html没有结束标签:在使用springboot的过程中,如果使用thymeleaf作为模板文件,则要求HTML格式必须为严格的http://www.gxlcms.com/wiki/1118.html target=_blank
推荐度:
标签: 标签 html boot
  • 热门焦点

最新推荐

猜你喜欢

热门推荐

专题
Top