[THYMELEAF][restartedMain] Template Mode 'HTML5' is deprecated. Using Template Mode 'HTML' instead. 1.当启动SpringBoot时,出现Thymeleaf模板警告,是因为application配置文件有问题. 将html5改成html即可
[THYMELEAF][restartedMain] Template Mode 'HTML5' is deprecated. Using Template Mode 'HTML' instead.
- 1.当启动SpringBoot时,出现Thymeleaf模板警告,是因为application配置文件有问题.
- 将html5改成html即可
- 或者添加Thymeleaf的版本号
1.当启动SpringBoot时,出现Thymeleaf模板警告,是因为application配置文件有问题.
[THYMELEAF][restartedMain] Template Mode 'HTML5' is deprecated.Using Template Mode 'HTML' instead.
将html5改成html即可
spring.thymeleaf.mode=HTML或者添加Thymeleaf的版本号
<properties><thymeleaf.version>3.0.2.RELEASE</thymeleaf.version>
<thymeleaf-layout-dialect.version>2.1.1</thymeleaf-layout-dialect.version>
</properties>