springboot报 org.thymeleaf.exceptions.TemplateInputException: Error resolving template "succeed";
1.原因
在使用springboot的过程中,如果使用thymeleaf作为模板文件,则要求HTML格式必须为严格的html5格式,必须有结束标签,否则会报错
2.解决方式
在application.yml中添加以下配置:
spring.thymeleaf.content-type: text/html
spring.thymeleaf.cache: false
spring.thymeleaf.mode: LEGACYHTML5
添加如下依赖:
<dependency>
groupId>net.sourceforge.nekohtml</groupId>
artifactId>nekohtml</artifactId>
<version>1.9.22</version>
</dependency>